tornado-core/migrations/3_deploy_verifier.js

7 lines
140 B
JavaScript
Raw Normal View History

2019-07-16 23:49:45 +03:00
/* global artifacts */
2019-07-16 20:27:20 +03:00
const Verifier = artifacts.require('Verifier')
2019-07-12 18:04:45 +03:00
2021-02-11 09:23:18 +03:00
module.exports = function (deployer) {
2019-07-16 20:27:20 +03:00
deployer.deploy(Verifier)
}