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 27, 2023
1 parent 334c533 commit 861da06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deploy-migrations/4_deploy_child_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = async function(deployer, _, _) {

// Same thing for TestToken (ERC20).
const childTestTokenProxified = await ChildERC20Proxified.new()
console.log('Child TestTokenProxified contract deployed')
console.log('\nChild TestTokenProxified contract deployed')
const childTestTokenProxy = await ChildTokenProxy.new(childTestTokenProxified.address)
console.log('Child TestToken proxy contract deployed')
const childTestToken = await ChildERC20Proxified.at(childTestTokenProxy.address)
Expand All @@ -51,7 +51,7 @@ module.exports = async function(deployer, _, _) {

// Same thing for TestERC721.
const childTestERC721Proxified = await ChildERC721Proxified.new()
console.log('Child TestERC721Proxified contract deployed')
console.log('\nChild TestERC721Proxified contract deployed')
const childTestERC721Proxy = await ChildTokenProxy.new(childTestERC721Proxified.address)
console.log('Child TestERC721 proxy contract deployed')
const childTestERC721 = await ChildERC721Proxified.at(childTestERC721Proxy.address)
Expand Down
4 changes: 2 additions & 2 deletions migrations/5_deploy_child_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = async function(deployer, _, _) {

// Same thing for TestToken (ERC20).
const childTestTokenProxified = await ChildERC20Proxified.new()
console.log('Child TestTokenProxified contract deployed')
console.log('\nChild TestTokenProxified contract deployed')
const childTestTokenProxy = await ChildTokenProxy.new(childTestTokenProxified.address)
console.log('Child TestToken proxy contract deployed')
const childTestToken = await ChildERC20Proxified.at(childTestTokenProxy.address)
Expand All @@ -55,7 +55,7 @@ module.exports = async function(deployer, _, _) {

// Same thing for TestERC721.
const childTestERC721Proxified = await ChildERC721Proxified.new()
console.log('Child TestERC721Proxified contract deployed')
console.log('\nChild TestERC721Proxified contract deployed')
const childTestERC721Proxy = await ChildTokenProxy.new(childTestERC721Proxified.address)
console.log('Child TestERC721 proxy contract deployed')
const childTestERC721 = await ChildERC721Proxified.at(childTestERC721Proxy.address)
Expand Down

0 comments on commit 861da06

Please sign in to comment.