Adi Seredinschi

Results 151 comments of Adi Seredinschi

> After debugging with @jtremback it seems this issue can be solved by removing the custom tendermint config values [here](https://github.com/cosmos/interchain-security/blob/main/integration-tests/actions.go#L110), and instead using the default values for `timeout_commit` and `peer_gossip_sleep_duration`....

> perhaps, it's best to treat pre-release components specially and emit a log warning whenever they are encountered, but otherwise relax the compatibility check. This is a great idea. We...

Note that there is a simple fix for this we included in PR #2167. The problem is also discussed here: https://github.com/informalsystems/ibc-rs/issues/1971#issuecomment-1117135293 The fix is: https://github.com/informalsystems/ibc-rs/pull/2167/commits/7fd032baba4fa9119c1a98549c27db0fd430c0a0#diff-d18b8c452b8118832b4112538d034e9490cf2c30ab35c42d2e19d2f842131e14R518-R520

> that is my [solution](https://github.com/falcons-x/ibc-rs/commit/8e3d2aef433cb2b64ed40ac837c8f34ef420937b) I see! You're including a `ClientUpdate` message multiple times in the batch, so that each individual transaction has a `ClientUpdate` with it. > Catching this...

> I probably understand what you mean. The first batch has been submitted to the mem-pool. Subsequent batches can ignore the exception and submit it directly to the mem-pool. when...

>because I insert UpdateClientMsg in every batch, the UpdateClientMsg in subsequent batches will not involve crypto operation, The code is as follows: Interesting, thanks for highlighting that, I wasn't aware...

Two updates we received from upstream dependencies: - Carlos is in the process of building ibc-go (simapp in there) with cosmos-sdk 0.45 + tm 0.34 - https://github.com/cosmos/ibc-go/tree/carlos/upgrade-pr-branch - Billy has...

After negotiating with Mikhail, we agreed on this battle plan: 1. Check feasibility of adapting our `ibc-*` crates to using `cosmos-sdk-rust` 2. Check if we can do buf-based generation in...

> I have failed early on step 1 as described in [#425 (comment)](https://github.com/informalsystems/ibc-rs/issues/425#issuecomment-1117967281), so proceeding with step 4. I see, the derive tags seem to be the main issue. Thank...

Thanks for the wrap-up Mikhail! > but we also have a choice to emulate 0.35 subscription API for all RPC clients What would be your recommendation between the side-by-side approach...