diff --git a/migrations/5_deploy_child_contracts.js b/migrations/5_deploy_child_contracts.js index f6f8e2b9..18f7726c 100644 --- a/migrations/5_deploy_child_contracts.js +++ b/migrations/5_deploy_child_contracts.js @@ -4,12 +4,13 @@ const SafeMath = artifacts.require( 'openzeppelin-solidity/contracts/math/SafeMath.sol' ) const ChildChain = artifacts.require('ChildChain') -const MRC20 = artifacts.require('MRC20') const ChildERC20Proxified = artifacts.require('ChildERC20Proxified') const ChildERC721Proxified = artifacts.require('ChildERC721Proxified') const ChildTokenProxy = artifacts.require('ChildTokenProxy') +const MRC20 = artifacts.require('MRC20') + module.exports = async function(deployer, network, accounts) { if (deployer.network !== 'bor') { return @@ -33,7 +34,6 @@ module.exports = async function(deployer, network, accounts) { await childMaticWeth.changeChildChain(childChain.address) await childChain.mapToken(contractAddresses.root.tokens.MaticWeth, childMaticWeth.address, false) - // Same thing for TestToken (ERC20). const childTestTokenProxified = await ChildERC20Proxified.new() const childTestTokenProxy = await ChildTokenProxy.new(childTestTokenProxified.address)