mirror of
https://github.com/tornadocash/tornado-nova
synced 2024-02-02 14:53:56 +01:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
|
/* global artifacts */
|
||
|
const Verifier = artifacts.require('Verifier')
|
||
|
|
||
|
module.exports = function(deployer) {
|
||
|
deployer.deploy(Verifier)
|
||
|
}
|