Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fastfadingviolets committed Dec 2, 2024
1 parent 7e85d80 commit bbd3765
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions tests/interchain/chainsuite/chain_ics.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion tests/interchain/chainsuite/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bbd3765

Please sign in to comment.