-
Notifications
You must be signed in to change notification settings - Fork 392
Open
Description
Summary of Bug
I use ignite create two chain, and want use hermes to create connection between the chains. It has some errors. After search in the troubleshooting and not found the resolution. The err summary as follow:
2025-03-30T13:54:52.776707Z ERROR ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}:estimate_gas: failed to simulate tx. propagating error to caller: gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot C4796F0E7C5515EEF23260551DD4DE9ED4C4A2200FFFE3A9D369049FCDB4CBCA at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '141019'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35615"} }
2025-03-30T13:54:52.776771Z ERROR ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}: gas estimation failed or encountered another unrecoverable error error=gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot C4796F0E7C5515EEF23260551DD4DE9ED4C4A2200FFFE3A9D369049FCDB4CBCA at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '141019'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35615"} }
2025-03-30T13:54:52.782016Z ERROR ThreadId(01) failed ConnOpenTry ConnectionSide { chain: BaseChainHandle { chain_id: mysecondchain }, client_id: 07-tendermint-29, connection_id: None }: failed during a transaction submission step to chain 'mysecondchain': gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot C4796F0E7C5515EEF23260551DD4DE9ED4C4A2200FFFE3A9D369049FCDB4CBCA at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '141019'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35615"} }
Version
hermes version
2025-03-30T13:48:50.865636Z INFO ThreadId(01) running Hermes v1.12.0+a2e8437
hermes 1.12.0+a2e8437
ignite version
Ignite CLI version: v28.8.2
Ignite CLI build date: 2025-03-16T20:29:10Z
Ignite CLI source hash: a1f12a73d0ff1d87a478d7c9287ea3722671da17
Ignite CLI config version: v1
Cosmos SDK version: v0.50.13
Your OS: darwin
Your arch: amd64
Your go version: go version go1.23.7 darwin/amd64
Your uname -a: Darwin xxxMacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64 x86_64
Your cwd: /Users/xxx/.hermes
Is on Gitpod: false
Steps to Reproduce
- use
ignite
create 2 chains - hermes config:
cat config.toml
[global]
log_level = 'debug'
[mode.clients]
enabled = true
refresh = true
misbehaviour = true
[mode.connections]
enabled = true
[mode.channels]
enabled = true
[mode.packets]
enabled = true
[[chains]]
id = 'mycosmos'
rpc_addr = 'http://localhost:26657'
grpc_addr = 'http://localhost:9090'
event_source = { mode = 'push', url = 'ws://127.0.0.1:26657/websocket', batch_delay = '500ms' }
account_prefix = 'mycosmos'
store_prefix = 'mycosmosstore'
key_name = 'relayer'
gas_price = { price = 0.025, denom = 'token' }
default_gas = 200000 # 提高到合理值
max_gas = 300000 # 确保高于 101290
[[chains]]
id = 'mysecondchain'
rpc_addr = 'http://localhost:36657'
grpc_addr = 'http://localhost:19090'
event_source = { mode = 'push', url = 'ws://127.0.0.1:36657/websocket', batch_delay = '500ms' }
account_prefix = 'second'
store_prefix = 'mysecondchainstore' # 修正拼写
key_name = 'relayer'
gas_price = { price = 0.025, denom = 'stake' }
default_gas = 200000 # 提高到合理值
max_gas = 300000 # 确保高于 101290
- create connection with
hermes create connection --a-chain mycosmos --b-chain mysecondchain
. Then output is:
hermes create connection --a-chain mycosmos --b-chain mysecondchain
2025-03-30T13:54:41.787308Z INFO ThreadId(01) using default configuration from '/Users/jerad.k/.hermes/config.toml'
2025-03-30T13:54:41.789516Z INFO ThreadId(01) running Hermes v1.12.0+a2e8437
2025-03-30T13:54:41.862336Z INFO ThreadId(01) Creating new clients hosted on chains mycosmos and mysecondchain
2025-03-30T13:54:41.919147Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}: sending 1 messages as 1 batches to chain mycosmos in parallel
2025-03-30T13:54:41.919732Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=110}: max fee, for use in tx simulation: Fee { amount: "7501token", gas_limit: 300000 }
2025-03-30T13:54:41.927052Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=110}:estimate_gas: tx simulation successful, gas amount used: 88402
2025-03-30T13:54:41.927095Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=110}: send_tx: using 88402 gas, fee Fee { amount: "2432token", gas_limit: 97242 } id=mycosmos
2025-03-30T13:54:41.931544Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=110}: gas estimation succeeded
2025-03-30T13:54:41.931571Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=110}: tx was successfully broadcasted, increasing account sequence number response=Response { codespace: "", code: Ok, data: b"", log: "", hash: Hash::Sha256(D2187E5C6DFAA91A47672FBFFA121EFA20A26760C094B9A6AEA967408DAA4040) } account.sequence.old=110 account.sequence.new=111
2025-03-30T13:54:41.932325Z DEBUG ThreadId(10) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}:send_messages_and_wait_commit{chain=mycosmos tracking_id=create client}:wait_for_block_commits{id=mycosmos}: waiting for commit of tx hashes(s) D2187E5C6DFAA91A47672FBFFA121EFA20A26760C094B9A6AEA967408DAA4040
2025-03-30T13:54:42.547669Z INFO ThreadId(01) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}: 🍭 client was created successfully id=07-tendermint-19
2025-03-30T13:54:42.547698Z DEBUG ThreadId(01) foreign_client.create{client=mysecondchain->mycosmos:07-tendermint-0}: event emitted after creation id=07-tendermint-19 event_with_height.event=CreateClient(CreateClient(Attributes { client_id: ClientId("07-tendermint-19"), client_type: Tendermint, consensus_height: Height { revision: 0, height: 35606 } }))
2025-03-30T13:54:42.568965Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}: sending 1 messages as 1 batches to chain mysecondchain in parallel
2025-03-30T13:54:42.569001Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=119}: max fee, for use in tx simulation: Fee { amount: "7501stake", gas_limit: 300000 }
2025-03-30T13:54:42.571983Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=119}:estimate_gas: tx simulation successful, gas amount used: 88024
2025-03-30T13:54:42.572031Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=119}: send_tx: using 88024 gas, fee Fee { amount: "2421stake", gas_limit: 96826 } id=mysecondchain
2025-03-30T13:54:42.575940Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=119}: gas estimation succeeded
2025-03-30T13:54:42.575966Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=119}: tx was successfully broadcasted, increasing account sequence number response=Response { codespace: "", code: Ok, data: b"", log: "", hash: Hash::Sha256(B8F9206446AD58518157EDB2F858ED56EB122E718C0CF67B216ADDA2185DB81D) } account.sequence.old=119 account.sequence.new=120
2025-03-30T13:54:42.576011Z DEBUG ThreadId(19) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}:send_messages_and_wait_commit{chain=mysecondchain tracking_id=create client}:wait_for_block_commits{id=mysecondchain}: waiting for commit of tx hashes(s) B8F9206446AD58518157EDB2F858ED56EB122E718C0CF67B216ADDA2185DB81D
2025-03-30T13:54:44.102406Z INFO ThreadId(01) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}: 🍭 client was created successfully id=07-tendermint-29
2025-03-30T13:54:44.102427Z DEBUG ThreadId(01) foreign_client.create{client=mycosmos->mysecondchain:07-tendermint-0}: event emitted after creation id=07-tendermint-29 event_with_height.event=CreateClient(CreateClient(Attributes { client_id: ClientId("07-tendermint-29"), client_type: Tendermint, consensus_height: Height { revision: 0, height: 35964 } }))
2025-03-30T13:54:44.104123Z DEBUG ThreadId(01) do_conn_open_handshake with connection end states: UNINITIALIZED, UNINITIALIZED
2025-03-30T13:54:44.106205Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}: sending 1 messages as 1 batches to chain mycosmos in parallel
2025-03-30T13:54:44.106225Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=111}: max fee, for use in tx simulation: Fee { amount: "7501token", gas_limit: 300000 }
2025-03-30T13:54:44.109376Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=111}:estimate_gas: tx simulation successful, gas amount used: 70271
2025-03-30T13:54:44.109429Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=111}: send_tx: using 70271 gas, fee Fee { amount: "1933token", gas_limit: 77298 } id=mycosmos
2025-03-30T13:54:44.112281Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=111}: gas estimation succeeded
2025-03-30T13:54:44.112308Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=111}: tx was successfully broadcasted, increasing account sequence number response=Response { codespace: "", code: Ok, data: b"", log: "", hash: Hash::Sha256(DA92E47E3CEEE38211B15DCEE335B1AD032A2D403E33C752E6332879FE7A3F34) } account.sequence.old=111 account.sequence.new=112
2025-03-30T13:54:44.112360Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=ConnectionOpenInit}:wait_for_block_commits{id=mycosmos}: waiting for commit of tx hashes(s) DA92E47E3CEEE38211B15DCEE335B1AD032A2D403E33C752E6332879FE7A3F34
2025-03-30T13:54:45.030561Z INFO ThreadId(01) 🥂 mycosmos => OpenInitConnection(OpenInit { Attributes { connection_id: connection-8, client_id: 07-tendermint-19, counterparty_connection_id: None, counterparty_client_id: 07-tendermint-29 } }) at height 0-35966
2025-03-30T13:54:51.038595Z DEBUG ThreadId(01) do_conn_open_handshake with connection end states: INIT, UNINITIALIZED
2025-03-30T13:54:51.079968Z DEBUG ThreadId(01) foreign_client.wait_and_build_update_client_with_trusted{client=mysecondchain->mycosmos:07-tendermint-19 target_height=0-35614}:foreign_client.build_update_client_with_trusted{client=mysecondchain->mycosmos:07-tendermint-19 target_height=0-35614}: building a MsgUpdateAnyClient from trusted height 0-35606 to target height 0-35614
2025-03-30T13:54:51.080684Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}: sending 1 messages as 1 batches to chain mycosmos in parallel
2025-03-30T13:54:51.080704Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=112}: max fee, for use in tx simulation: Fee { amount: "7501token", gas_limit: 300000 }
2025-03-30T13:54:51.084602Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=112}:estimate_gas: tx simulation successful, gas amount used: 98733
2025-03-30T13:54:51.084669Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=112}: send_tx: using 98733 gas, fee Fee { amount: "2716token", gas_limit: 108606 } id=mycosmos
2025-03-30T13:54:51.088387Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=112}: gas estimation succeeded
2025-03-30T13:54:51.088405Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=112}: tx was successfully broadcasted, increasing account sequence number response=Response { codespace: "", code: Ok, data: b"", log: "", hash: Hash::Sha256(801B1ECBE77F236EBF922B5139AFBB47F5AD640CD2C6E3275D06DABB23EF5E9D) } account.sequence.old=112 account.sequence.new=113
2025-03-30T13:54:51.088454Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:wait_for_block_commits{id=mycosmos}: waiting for commit of tx hashes(s) 801B1ECBE77F236EBF922B5139AFBB47F5AD640CD2C6E3275D06DABB23EF5E9D
2025-03-30T13:54:52.730782Z DEBUG ThreadId(01) foreign_client.wait_and_build_update_client_with_trusted{client=mycosmos->mysecondchain:07-tendermint-29 target_height=0-35973}:foreign_client.build_update_client_with_trusted{client=mycosmos->mysecondchain:07-tendermint-29 target_height=0-35973}: building a MsgUpdateAnyClient from trusted height 0-35964 to target height 0-35973
2025-03-30T13:54:52.768978Z DEBUG ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}: sending 2 messages as 1 batches to chain mysecondchain in parallel
2025-03-30T13:54:52.769011Z DEBUG ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}: max fee, for use in tx simulation: Fee { amount: "7501stake", gas_limit: 300000 }
2025-03-30T13:54:52.776707Z ERROR ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}:estimate_gas: failed to simulate tx. propagating error to caller: gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot C4796F0E7C5515EEF23260551DD4DE9ED4C4A2200FFFE3A9D369049FCDB4CBCA at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '141019'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35615"} }
2025-03-30T13:54:52.776771Z ERROR ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}: gas estimation failed or encountered another unrecoverable error error=gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot C4796F0E7C5515EEF23260551DD4DE9ED4C4A2200FFFE3A9D369049FCDB4CBCA at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '141019'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35615"} }
2025-03-30T13:54:52.782016Z ERROR ThreadId(01) failed ConnOpenTry ConnectionSide { chain: BaseChainHandle { chain_id: mysecondchain }, client_id: 07-tendermint-29, connection_id: None }: failed during a transaction submission step to chain 'mysecondchain': gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot C4796F0E7C5515EEF23260551DD4DE9ED4C4A2200FFFE3A9D369049FCDB4CBCA at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '141019'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35615"} }
2025-03-30T13:54:58.796877Z DEBUG ThreadId(01) do_conn_open_handshake with connection end states: INIT, UNINITIALIZED
2025-03-30T13:54:58.876375Z DEBUG ThreadId(01) foreign_client.wait_and_build_update_client_with_trusted{client=mysecondchain->mycosmos:07-tendermint-19 target_height=0-35621}:foreign_client.build_update_client_with_trusted{client=mysecondchain->mycosmos:07-tendermint-19 target_height=0-35621}: building a MsgUpdateAnyClient from trusted height 0-35614 to target height 0-35621
2025-03-30T13:54:58.877205Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}: sending 1 messages as 1 batches to chain mycosmos in parallel
2025-03-30T13:54:58.877246Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=113}: max fee, for use in tx simulation: Fee { amount: "7501token", gas_limit: 300000 }
2025-03-30T13:54:58.883624Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=113}:estimate_gas: tx simulation successful, gas amount used: 98733
2025-03-30T13:54:58.883762Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=113}: send_tx: using 98733 gas, fee Fee { amount: "2716token", gas_limit: 108606 } id=mycosmos
2025-03-30T13:54:58.887982Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=113}: gas estimation succeeded
2025-03-30T13:54:58.888005Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mycosmos account.sequence=113}: tx was successfully broadcasted, increasing account sequence number response=Response { codespace: "", code: Ok, data: b"", log: "", hash: Hash::Sha256(63FE3BD336F6305F239D4AF359B46D74EE0D9AAEF7D0A2331893325B24107B5E) } account.sequence.old=113 account.sequence.new=114
2025-03-30T13:54:58.888047Z DEBUG ThreadId(10) send_messages_and_wait_commit{chain=mycosmos tracking_id=update client on source for ConnectionOpenTry}:wait_for_block_commits{id=mycosmos}: waiting for commit of tx hashes(s) 63FE3BD336F6305F239D4AF359B46D74EE0D9AAEF7D0A2331893325B24107B5E
2025-03-30T13:55:00.645447Z DEBUG ThreadId(01) foreign_client.wait_and_build_update_client_with_trusted{client=mycosmos->mysecondchain:07-tendermint-29 target_height=0-35980}:foreign_client.build_update_client_with_trusted{client=mycosmos->mysecondchain:07-tendermint-29 target_height=0-35980}: building a MsgUpdateAnyClient from trusted height 0-35964 to target height 0-35980
2025-03-30T13:55:00.650456Z DEBUG ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}: sending 2 messages as 1 batches to chain mysecondchain in parallel
2025-03-30T13:55:00.650485Z DEBUG ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}: max fee, for use in tx simulation: Fee { amount: "7501stake", gas_limit: 300000 }
2025-03-30T13:55:00.656331Z ERROR ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}:estimate_gas: failed to simulate tx. propagating error to caller: gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot 8FA2D3E92EBE7A61F5EF8B6F85F22DC6F9B377EE88BD1852A5E0D1417C150FF8 at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '140569'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35622"} }
2025-03-30T13:55:00.656390Z ERROR ThreadId(19) send_messages_and_wait_commit{chain=mysecondchain tracking_id=ConnectionOpenTry}:send_tx_with_account_sequence_retry{chain=mysecondchain account.sequence=120}: gas estimation failed or encountered another unrecoverable error error=gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot 8FA2D3E92EBE7A61F5EF8B6F85F22DC6F9B377EE88BD1852A5E0D1417C150FF8 at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '140569'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35622"} }
2025-03-30T13:55:00.656440Z ERROR ThreadId(01) failed ConnOpenTry ConnectionSide { chain: BaseChainHandle { chain_id: mysecondchain }, client_id: 07-tendermint-29, connection_id: None }: failed during a transaction submission step to chain 'mysecondchain': gRPC call `send_tx_simulate` failed with status: status: Unknown, message: "failed to execute message; message index: 1: connection handshake open try failed: failed connection state verification for client (07-tendermint-29): chained membership proof failed to verify membership of value: 0A1030372D74656E6465726D696E742D313912230A0131120D4F524445525F4F524445524544120F4F524445525F554E4F524445524544180122190A1030372D74656E6465726D696E742D32391A050A03696263 in subroot 8FA2D3E92EBE7A61F5EF8B6F85F22DC6F9B377EE88BD1852A5E0D1417C150FF8 at index 0. Please ensure the path and value are both correct.: invalid proof [cosmos/ibc-go/[email protected]/modules/core/23-commitment/types/merkle.go:218] with gas used: '140569'", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc", "x-cosmos-block-height": "35622"} }
Acceptance Criteria
For Admin Use
- Not duplicate issue
- Appropriate labels applied
- Appropriate milestone (priority) applied
- Appropriate contributors tagged
- Contributor assigned/self-assigned
Metadata
Metadata
Assignees
Labels
No labels