diff --git a/tests/interchain/chainsuite/chain_ics.go b/tests/interchain/chainsuite/chain_ics.go index 0036b27648..fb4c9b3831 100644 --- a/tests/interchain/chainsuite/chain_ics.go +++ b/tests/interchain/chainsuite/chain_ics.go @@ -384,6 +384,13 @@ func (p *Chain) DefaultConsumerChainSpec(ctx context.Context, chainID string, co if err != nil { return nil, err } + if chainType == neutronChain || chainType == strideChain { + // Stride and Neutron aren't updated yet to use the consumer ID + b, err = sjson.DeleteBytes(b, "app_state.ccvconsumer.params.consumer_id") + if err != nil { + return nil, err + } + } if chainType == strideChain { b, err = sjson.SetBytes(b, "app_state.epochs.epochs.#(identifier==\"day\").duration", "120s") if err != nil { diff --git a/tests/interchain/chainsuite/config.go b/tests/interchain/chainsuite/config.go index eed5db7c88..6745329263 100644 --- a/tests/interchain/chainsuite/config.go +++ b/tests/interchain/chainsuite/config.go @@ -49,7 +49,7 @@ const ( ChainSpawnWait = 155 * time.Second SlashingWindowConsumer = 20 BlocksPerDistribution = 10 - StrideVersion = "v22.0.0" + StrideVersion = "v24.0.0" NeutronVersion = "v3.0.2" TransferPortID = "transfer" // This is needed because not every ics image is in the default heighliner registry