Skip to content

Commit

Permalink
fix: handle Sei retryable error (#5359)
Browse files Browse the repository at this point in the history
Uses gas escalation fix for Sei from
hyperlane-xyz/ethers-rs#32:

> There was a gas spike on Sei overnight in which the escalator wasn't
effective at all, because the error message (insufficient fee) is
non-standard and txs were just dropped. This meant submissions were
stuck until the gas price estimation RPC returned accurate enough
values.

> Logs here: https://cloudlogging.app.goo.gl/wCsz7oEuFL6RdaAY7
  • Loading branch information
daniel-savu authored Feb 3, 2025
1 parent 7641389 commit ef08c53
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions rust/main/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions rust/main/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -200,27 +200,27 @@ overflow-checks = true
[workspace.dependencies.ethers]
features = []
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2025-01-10"
tag = "2025-02-03"

[workspace.dependencies.ethers-contract]
features = ["legacy"]
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2025-01-10"
tag = "2025-02-03"

[workspace.dependencies.ethers-core]
features = []
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2025-01-10"
tag = "2025-02-03"

[workspace.dependencies.ethers-providers]
features = []
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2025-01-10"
tag = "2025-02-03"

[workspace.dependencies.ethers-signers]
features = ["aws"]
git = "https://github.com/hyperlane-xyz/ethers-rs"
tag = "2025-01-10"
tag = "2025-02-03"

[patch.crates-io.curve25519-dalek]
branch = "v3.2.2-relax-zeroize"
Expand Down

0 comments on commit ef08c53

Please sign in to comment.