diff --git a/crates/core/component/shielded-pool/src/ics20_withdrawal.rs b/crates/core/component/shielded-pool/src/ics20_withdrawal.rs index 94ad359491..60256c6a74 100644 --- a/crates/core/component/shielded-pool/src/ics20_withdrawal.rs +++ b/crates/core/component/shielded-pool/src/ics20_withdrawal.rs @@ -81,7 +81,7 @@ impl Ics20Withdrawal { // skew, enforce that timeout time is rounded to the nearest minute if self.timeout_time % 60_000_000_000 != 0 { anyhow::bail!( - "withdrawal timeout timestamp {} is not rounded to one second", + "withdrawal timeout timestamp {} is not rounded to one minute", self.timeout_time ); }