Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
chore: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 24, 2023
1 parent d13b0a3 commit 3912f06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/5_deploy_child_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit 3912f06

Please sign in to comment.