From 5474c9ed6dab3236b9c525d1156b2ee6f7a8741e Mon Sep 17 00:00:00 2001 From: Ava Howell Date: Mon, 25 Mar 2024 13:34:17 -0700 Subject: [PATCH] fix error text for timeout timestamp --- crates/core/component/shielded-pool/src/ics20_withdrawal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); }