This repository was archived by the owner on Feb 16, 2025. It is now read-only.
Replies: 1 comment
|
Adding a note on Hermes v0.9 errors when testing with Gaia v6 (go mod 2021-12-01T16:58:13.393471Z ERROR ThreadId(35) [localnet_reuse] estimate_gas: failed to simulate tx with non-recoverable error: gRPC call failed with status: status: InvalidArgument, message: "account sequence mismatch, expected 11, got 10: incorrect account sequence: invalid request", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc"} }
2021-12-01T16:58:13.393500Z ERROR ThreadId(37) [gaia:transfer/channel-0 -> localnet_reuse] worker: schedule execution encountered error: failed with underlying error: gRPC call failed with status: status: InvalidArgument, message: "account sequence mismatch, expected 11, got 10: incorrect account sequence: invalid request", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc"} }``` |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This is WIP.
1. Set
max_expected_time_per_blockparamChains have experienced IBC connectivity issues when they omitted the following in their upgrade handler or genesis migration
e.g. a chain patch to add it reference
How it looks in our test handler
2. Do not change the chain-ID during an upgrade unless it is accompanied with an IBC client upgrade
Copying here from the IBC upgrade guide
Details here
3. Upgrade the Hermes configuration to their revamped v0.9+ format
Our working testnet configuration: https://github.com/e-money/em-ledger/blob/v44-ibc-1.x/networks/ibc/emoney-config.toml
All reactions