Commit dbedfe3c authored by Mark Tyneway's avatar Mark Tyneway Committed by Andreas Bigger

lint: fix

parent 069f9c22
...@@ -322,7 +322,9 @@ task('deposit-erc20', 'Deposits WETH9 onto L2.') ...@@ -322,7 +322,9 @@ task('deposit-erc20', 'Deposits WETH9 onto L2.')
const currentStatus = await messenger.getMessageStatus(withdraw) const currentStatus = await messenger.getMessageStatus(withdraw)
console.log(`Message status: ${MessageStatus[currentStatus]}`) console.log(`Message status: ${MessageStatus[currentStatus]}`)
const latest = await L2OutputOracle.latestBlockNumber() const latest = await L2OutputOracle.latestBlockNumber()
console.log(`Latest L2OutputOracle commitment number: ${latest.toString()}`) console.log(
`Latest L2OutputOracle commitment number: ${latest.toString()}`
)
}, 3000) }, 3000)
const now = Math.floor(Date.now() / 1000) const now = Math.floor(Date.now() / 1000)
......
...@@ -315,7 +315,9 @@ task('deposit-eth', 'Deposits ether to L2.') ...@@ -315,7 +315,9 @@ task('deposit-eth', 'Deposits ether to L2.')
const currentStatus = await messenger.getMessageStatus(ethWithdrawReceipt) const currentStatus = await messenger.getMessageStatus(ethWithdrawReceipt)
console.log(`Message status: ${MessageStatus[currentStatus]}`) console.log(`Message status: ${MessageStatus[currentStatus]}`)
const latest = await L2OutputOracle.latestBlockNumber() const latest = await L2OutputOracle.latestBlockNumber()
console.log(`Latest L2OutputOracle commitment number: ${latest.toString()}`) console.log(
`Latest L2OutputOracle commitment number: ${latest.toString()}`
)
}, 3000) }, 3000)
try { try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment