mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-10-31 23:35:20 +01:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
/* global artifacts */
|
|
const Migrations = artifacts.require('Migrations')
|
|
|
|
module.exports = function(deployer) {
|
|
if(deployer.network === 'mainnet') {
|
|
return
|
|
}
|
|
deployer.deploy(Migrations)
|
|
}
|