Skip to content

Commit f7b396c

Browse files
author
Yash Agrawal
committed
feat: minor fix
1 parent 545251d commit f7b396c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/deploySBTFactory.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ async function main() {
1212
const sbtFactoryFactory = await ethers.getContractFactory('SBTFactory')
1313
const sbtFactoryInstance = await sbtFactoryFactory.deploy()
1414
const sbtFactoryInstanceDeployTxn = sbtFactoryInstance.deployTransaction
15-
console.log(` - SBTFactory deploying at txn:${sbtFactoryInstanceDeployTxn.hash}`)
15+
console.log(
16+
` - SBTFactory deploying at txn:${sbtFactoryInstanceDeployTxn.hash}`
17+
)
1618
await sbtFactoryInstance.deployed()
1719
console.log(` - SBTFactory deployed at address:${sbtFactoryInstance.address}`)
1820
await sbtFactoryInstanceDeployTxn.wait(2)

0 commit comments

Comments
 (0)