Skip to content

Commit

Permalink
Fix execution of tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
naddison36 authored and alsco77 committed Apr 12, 2021
1 parent 9087800 commit 27b9d8d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/taskUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ export const deployTx = async <C>(
await deployment.deployed()
const receipt = await deployment.deployTransaction.wait()

console.log(chalk.blue(`Deploy transaction: ${chalk.yellow(receipt.transactionHash)}. Gas used ${chalk.yellow(receipt.gasUsed)}`))
console.log(
chalk.blue(`Deploy transaction: ${chalk.yellow(receipt.transactionHash)}. Gas used ${chalk.yellow(receipt.gasUsed.toString())}`),
)

console.log(chalk.greenBright(`Deployed to ${chalk.yellow(receipt.contractAddress)}`))

Expand Down

0 comments on commit 27b9d8d

Please sign in to comment.