We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 208bf42 commit 9e3c071Copy full SHA for 9e3c071
chains/evm/message/across.go
@@ -291,10 +291,10 @@ func (h *AcrossMessageHandler) waitForConfirmations(
291
return nil
292
}
293
294
- duration := time.Duration(uint64(h.blocktime) * (requiredConfirmations - confirmations.Uint64())
+ duration := time.Duration(uint64(h.blocktime) * (requiredConfirmations - confirmations.Uint64()))
295
log.Debug().Msgf("Waiting for tx %s for %s", txHash, duration)
296
// nolint:gosec
297
- time.Sleep(duration))
+ time.Sleep(duration)
298
299
300
0 commit comments