mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-06-08 06:32:50 -04:00
7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
/* global artifacts */
|
|
require('dotenv').config()
|
|
const Verifier = artifacts.require('Verifier')
|
|
|
|
module.exports = function(deployer) {
|
|
deployer.deploy(Verifier)
|
|
}
|