mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-01-06 03:54:51 +01:00
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
/* global artifacts */
|
|
require('dotenv').config()
|
|
const Verifier = artifacts.require('Verifier')
|
|
|
|
module.exports = function(deployer) {
|
|
deployer.deploy(Verifier)
|
|
}
|