skip migrations

This commit is contained in:
Roman Storm 2019-08-01 17:19:52 -07:00
parent a657860418
commit e1e989986f
3 changed files with 13 additions and 0 deletions

View file

@ -2,5 +2,8 @@
const Migrations = artifacts.require('Migrations')
module.exports = function(deployer) {
if(deployer.network === 'mainnet') {
return
}
deployer.deploy(Migrations)
}