Skip to content

Commit

Permalink
fix error text for timeout timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
avahowell authored and conorsch committed Mar 26, 2024
1 parent 181b110 commit 5474c9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
}
Expand Down

0 comments on commit 5474c9e

Please sign in to comment.