tornado-core/migrations/3_deploy_verifier.js

7 lines
140 B
JavaScript
Raw Permalink Normal View History

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