mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-12-28 23:56:10 -05:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
|
require('dotenv').config()
|
||
|
const Verifier = artifacts.require("Verifier");
|
||
|
|
||
|
module.exports = function(deployer) {
|
||
|
deployer.deploy(Verifier);
|
||
|
};
|