From 3912f06cf45e88e838ca682a5953198e89b4b493 Mon Sep 17 00:00:00 2001 From: leovct Date: Fri, 24 Nov 2023 16:21:20 +0100 Subject: [PATCH] chore: nit --- migrations/5_deploy_child_contracts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)