Skip to content

Commit c715a97

Browse files
stana-miricmpoke
andauthored
ci: Added infraction tests to provider suite (#2416)
* added infraction tests * go imports and docker image fix * improve retrieving of unsused testing account * split provider suites * additional improvement * spelling fixes * Update tests/interchain/provider_single_val_test.go Co-authored-by: Marius Poke <[email protected]> * Update tests/interchain/provider_single_val_test.go Co-authored-by: Marius Poke <[email protected]> * Update tests/interchain/provider_single_val_test.go Co-authored-by: Marius Poke <[email protected]> * add desc for tested infraction scenarios --------- Co-authored-by: Marius Poke <[email protected]>
1 parent 0ed3e1a commit c715a97

File tree

10 files changed

+531
-249
lines changed

10 files changed

+531
-249
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,11 @@ test-integration-cov:
5353
go test ./tests/integration/... -timeout 30m -coverpkg=./... -coverprofile=integration-profile.out -covermode=atomic
5454

5555
# run interchain tests
56+
# we can use PROVIDER_IMAGE_TAG and PROVIDER_IMAGE_NAME to run tests with a desired docker image,
57+
# including a locally built one that, for example, contains some of our changes that are not yet on the main branch.
58+
# if not provided, default value for PROVIDER_IMAGE_TAG is "latest" and for PROVIDER_IMAGE_NAME "ghcr.io/cosmos/interchain-security"
5659
test-interchain:
57-
cd tests/interchain && go test ./... -timeout 30m
60+
cd tests/interchain && PROVIDER_IMAGE_NAME=$(PROVIDER_IMAGE_NAME) PROVIDER_IMAGE_TAG=$(PROVIDER_IMAGE_TAG) go test ./... -timeout 30m
5861

5962
# run mbt tests
6063
test-mbt:

tests/interchain/chainsuite/chain_spec_provider.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ import (
99
"github.com/strangelove-ventures/interchaintest/v8"
1010
)
1111

12-
func GetProviderSpec() *interchaintest.ChainSpec {
12+
func GetProviderSpec(validatorCount int) *interchaintest.ChainSpec {
1313
fullNodes := FullNodeCount
14-
validators := ValidatorCount
14+
validators := validatorCount
1515

1616
return &interchaintest.ChainSpec{
1717
Name: ProviderChainID,
1818
NumFullNodes: &fullNodes,
1919
NumValidators: &validators,
20-
Version: ProviderImageVersion,
20+
Version: ProviderImageVersion(),
2121
ChainConfig: ibc.ChainConfig{
2222
Type: CosmosChainType,
2323
Bin: ProviderBin,
@@ -30,7 +30,7 @@ func GetProviderSpec() *interchaintest.ChainSpec {
3030
"config/config.toml": DefaultConfigToml(),
3131
},
3232
Images: []ibc.DockerImage{{
33-
Repository: ProviderImageName,
33+
Repository: ProviderImageName(),
3434
UIDGID: "1025:1025",
3535
}},
3636
ModifyGenesis: cosmos.ModifyGenesis(providerModifiedGenesis()),
@@ -48,6 +48,7 @@ func providerModifiedGenesis() []cosmos.GenesisKV {
4848
cosmos.NewGenesisKV("app_state.gov.params.min_deposit.0.amount", strconv.Itoa(GovMinDepositAmount)),
4949
cosmos.NewGenesisKV("app_state.slashing.params.signed_blocks_window", strconv.Itoa(ProviderSlashingWindow)),
5050
cosmos.NewGenesisKV("app_state.slashing.params.downtime_jail_duration", DowntimeJailDuration.String()),
51+
cosmos.NewGenesisKV("app_state.slashing.params.slash_fraction_double_sign", SlashFractionDoubleSign),
5152
cosmos.NewGenesisKV("app_state.provider.params.slash_meter_replenish_period", ProviderReplenishPeriod),
5253
cosmos.NewGenesisKV("app_state.provider.params.slash_meter_replenish_fraction", ProviderReplenishFraction),
5354
cosmos.NewGenesisKV("app_state.provider.params.blocks_per_epoch", "1"),

tests/interchain/chainsuite/config.go

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package chainsuite
22

33
import (
4+
"os"
45
"time"
56

67
"github.com/strangelove-ventures/interchaintest/v8/testutil"
@@ -10,14 +11,13 @@ import (
1011
)
1112

1213
const (
13-
ProviderImageName = "ghcr.io/cosmos/interchain-security"
14-
ProviderImageVersion = "v6.1.0"
1514
ProviderBin = "interchain-security-pd"
1615
ProviderBech32Prefix = "cosmos"
1716
ProviderValOperPrefix = "cosmosvaloper"
1817
ProviderChainID = "ics-provider"
1918
Stake = "stake"
2019
DowntimeJailDuration = 10 * time.Second
20+
SlashFractionDoubleSign = "0.05"
2121
ProviderSlashingWindow = 10
2222
ProviderUnbondingTime = 10 * time.Second
2323
ProviderReplenishPeriod = "2s"
@@ -32,14 +32,11 @@ const (
3232
CommitTimeout = 2 * time.Second
3333
TotalValidatorFunds = 11_000_000_000
3434
ValidatorFunds = 30_000_000
35-
// ValidatorCount is set to 2, so we have one active and one inactive (i.e., outside the active set) validator.
36-
// Note that the provider has at most 1 validator (see `chain_spec_provider.go`).
37-
ValidatorCount = 2
38-
FullNodeCount = 0
39-
ChainSpawnWait = 155 * time.Second
40-
CosmosChainType = "cosmos"
41-
GovModuleAddress = "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn"
42-
TestWalletsNumber = 15 // Ensure that test accounts are used in a way that maintains the mutual independence of tests
35+
FullNodeCount = 0
36+
ChainSpawnWait = 155 * time.Second
37+
CosmosChainType = "cosmos"
38+
GovModuleAddress = "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn"
39+
TestWalletsNumber = 20 // Ensure that test accounts are used in a way that maintains the mutual independence of tests
4340
)
4441

4542
func DefaultConfigToml() testutil.Toml {
@@ -64,3 +61,21 @@ func DefaultGenesisAmounts(denom string) func(i int) (sdktypes.Coin, sdktypes.Co
6461
}
6562
}
6663
}
64+
65+
func ProviderImageVersion() string {
66+
providerImageVersion := os.Getenv("PROVIDER_IMAGE_TAG")
67+
if providerImageVersion == "" {
68+
providerImageVersion = "latest"
69+
}
70+
71+
return providerImageVersion
72+
}
73+
74+
func ProviderImageName() string {
75+
providerImageName := os.Getenv("PROVIDER_IMAGE_NAME")
76+
if providerImageName == "" {
77+
providerImageName = "ghcr.io/cosmos/interchain-security"
78+
}
79+
80+
return providerImageName
81+
}

tests/interchain/chainsuite/query_types.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ type ConsumerResponse struct {
4444
OwnerAddress string `json:"owner_address"`
4545
Phase string `json:"phase"`
4646
PowerShapingParams PowerShapingParams `json:"power_shaping_params"`
47+
InfractionParams InfractionParams `json:"infraction_parameters"`
4748
}
4849

4950
type InitParams struct {
@@ -75,6 +76,16 @@ type PowerShapingParams struct {
7576
ValidatorsPowerCap int `json:"validators_power_cap"`
7677
}
7778

79+
type InfractionParams struct {
80+
DoubleSign SlashJailParams `json:"double_sign"`
81+
Downtime SlashJailParams `json:"downtime"`
82+
}
83+
84+
type SlashJailParams struct {
85+
SlashFraction string `json:"slash_fraction"`
86+
JailDuration string `json:"jail_duration"`
87+
}
88+
7889
type Params struct {
7990
Enabled bool `json:"enabled"`
8091
BlocksPerDistributionTransmission string `json:"blocks_per_distribution_transmission"`

tests/interchain/go.mod

Lines changed: 50 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
module cosmos/interchain-security/tests/interchain
22

3-
go 1.22.5
3+
go 1.22.7
44

5-
toolchain go1.22.6
5+
toolchain go1.22.10
66

77
require (
8-
cosmossdk.io/math v1.3.0
9-
github.com/cosmos/cosmos-sdk v0.50.9
10-
github.com/cosmos/ibc-go/v8 v8.5.0
11-
github.com/cosmos/interchain-security/v6 v6.1.0
8+
cosmossdk.io/math v1.4.0
9+
github.com/cometbft/cometbft v0.38.15
10+
github.com/cosmos/cosmos-sdk v0.50.10
11+
github.com/cosmos/ibc-go/v8 v8.5.2
12+
github.com/cosmos/interchain-security/v6 v6.3.0
1213
github.com/docker/docker v24.0.9+incompatible
1314
github.com/strangelove-ventures/interchaintest/v8 v8.7.1
1415
github.com/stretchr/testify v1.9.0
@@ -20,19 +21,19 @@ require (
2021
cloud.google.com/go v0.115.0 // indirect
2122
cloud.google.com/go/auth v0.6.0 // indirect
2223
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
23-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
24+
cloud.google.com/go/compute/metadata v0.5.0 // indirect
2425
cloud.google.com/go/iam v1.1.9 // indirect
2526
cloud.google.com/go/storage v1.41.0 // indirect
2627
cosmossdk.io/api v0.7.5 // indirect
2728
cosmossdk.io/collections v0.4.0 // indirect
2829
cosmossdk.io/core v0.11.1 // indirect
2930
cosmossdk.io/depinject v1.0.0 // indirect
3031
cosmossdk.io/errors v1.0.1 // indirect
31-
cosmossdk.io/log v1.4.1 // indirect
32-
cosmossdk.io/store v1.1.0 // indirect
32+
cosmossdk.io/log v1.5.0 // indirect
33+
cosmossdk.io/store v1.1.1 // indirect
3334
cosmossdk.io/x/evidence v0.1.1 // indirect
3435
cosmossdk.io/x/feegrant v0.1.1 // indirect
35-
cosmossdk.io/x/tx v0.13.4 // indirect
36+
cosmossdk.io/x/tx v0.13.5 // indirect
3637
cosmossdk.io/x/upgrade v0.1.4 // indirect
3738
filippo.io/edwards25519 v1.1.0 // indirect
3839
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
@@ -55,17 +56,20 @@ require (
5556
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
5657
github.com/bits-and-blooms/bitset v1.10.0 // indirect
5758
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
59+
github.com/bytedance/sonic v1.12.3 // indirect
60+
github.com/bytedance/sonic/loader v0.2.0 // indirect
5861
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
5962
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6063
github.com/chzyer/readline v1.5.1 // indirect
64+
github.com/cloudwego/base64x v0.1.4 // indirect
65+
github.com/cloudwego/iasm v0.2.0 // indirect
6166
github.com/cockroachdb/errors v1.11.3 // indirect
6267
github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
6368
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
6469
github.com/cockroachdb/pebble v1.1.1 // indirect
6570
github.com/cockroachdb/redact v1.1.5 // indirect
6671
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
67-
github.com/cometbft/cometbft v0.38.11 // indirect
68-
github.com/cometbft/cometbft-db v0.14.0 // indirect
72+
github.com/cometbft/cometbft-db v0.14.1 // indirect
6973
github.com/consensys/bavard v0.1.13 // indirect
7074
github.com/consensys/gnark-crypto v0.12.1 // indirect
7175
github.com/cosmos/btcutil v1.0.5 // indirect
@@ -74,7 +78,7 @@ require (
7478
github.com/cosmos/go-bip39 v1.0.0 // indirect
7579
github.com/cosmos/gogogateway v1.2.0 // indirect
7680
github.com/cosmos/gogoproto v1.7.0 // indirect
77-
github.com/cosmos/iavl v1.1.2 // indirect
81+
github.com/cosmos/iavl v1.2.0 // indirect
7882
github.com/cosmos/ibc-go/modules/capability v1.0.1 // indirect
7983
github.com/cosmos/ics23/go v0.11.0 // indirect
8084
github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect
@@ -86,7 +90,7 @@ require (
8690
github.com/decred/base58 v1.0.4 // indirect
8791
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
8892
github.com/decred/dcrd/dcrec/secp256k1/v2 v2.0.1 // indirect
89-
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
93+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
9094
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
9195
github.com/dgraph-io/badger/v4 v4.2.0 // indirect
9296
github.com/dgraph-io/ristretto v0.1.1 // indirect
@@ -102,7 +106,7 @@ require (
102106
github.com/felixge/httpsnoop v1.0.4 // indirect
103107
github.com/fsnotify/fsnotify v1.7.0 // indirect
104108
github.com/getsentry/sentry-go v0.27.0 // indirect
105-
github.com/go-kit/kit v0.12.0 // indirect
109+
github.com/go-kit/kit v0.13.0 // indirect
106110
github.com/go-kit/log v0.2.1 // indirect
107111
github.com/go-logfmt/logfmt v0.6.0 // indirect
108112
github.com/go-logr/logr v1.4.1 // indirect
@@ -111,12 +115,12 @@ require (
111115
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
112116
github.com/gogo/googleapis v1.4.1 // indirect
113117
github.com/gogo/protobuf v1.3.3 // indirect
114-
github.com/golang/glog v1.2.1 // indirect
118+
github.com/golang/glog v1.2.2 // indirect
115119
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
116120
github.com/golang/mock v1.6.0 // indirect
117121
github.com/golang/protobuf v1.5.4 // indirect
118122
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
119-
github.com/google/btree v1.1.2 // indirect
123+
github.com/google/btree v1.1.3 // indirect
120124
github.com/google/flatbuffers v1.12.1 // indirect
121125
github.com/google/go-cmp v0.6.0 // indirect
122126
github.com/google/orderedcode v0.0.1 // indirect
@@ -126,7 +130,7 @@ require (
126130
github.com/googleapis/gax-go/v2 v2.12.5 // indirect
127131
github.com/gorilla/handlers v1.5.2 // indirect
128132
github.com/gorilla/mux v1.8.1 // indirect
129-
github.com/gorilla/websocket v1.5.0 // indirect
133+
github.com/gorilla/websocket v1.5.3 // indirect
130134
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
131135
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
132136
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
@@ -154,11 +158,11 @@ require (
154158
github.com/ipfs/go-cid v0.4.1 // indirect
155159
github.com/jmespath/go-jmespath v0.4.0 // indirect
156160
github.com/jmhodges/levigo v1.0.0 // indirect
157-
github.com/klauspost/compress v1.17.7 // indirect
161+
github.com/klauspost/compress v1.17.9 // indirect
158162
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
159163
github.com/kr/pretty v0.3.1 // indirect
160164
github.com/kr/text v0.2.0 // indirect
161-
github.com/lib/pq v1.10.7 // indirect
165+
github.com/lib/pq v1.10.9 // indirect
162166
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
163167
github.com/libp2p/go-libp2p v0.31.0 // indirect
164168
github.com/linxGnu/grocksdb v1.8.14 // indirect
@@ -167,13 +171,14 @@ require (
167171
github.com/mattn/go-colorable v0.1.13 // indirect
168172
github.com/mattn/go-isatty v0.0.20 // indirect
169173
github.com/mimoo/StrobeGo v0.0.0-20220103164710-9a04d6ca976b // indirect
170-
github.com/minio/highwayhash v1.0.2 // indirect
174+
github.com/minio/highwayhash v1.0.3 // indirect
171175
github.com/minio/sha256-simd v1.0.1 // indirect
172176
github.com/misko9/go-substrate-rpc-client/v4 v4.0.0-20240603204351-26b456ae3afe // indirect
173177
github.com/mitchellh/go-homedir v1.1.0 // indirect
174178
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
175179
github.com/mitchellh/mapstructure v1.5.0 // indirect
176180
github.com/mmcloughlin/addchain v0.4.0 // indirect
181+
github.com/morikuni/aec v1.0.0 // indirect
177182
github.com/mr-tron/base58 v1.2.0 // indirect
178183
github.com/mtibben/percent v0.2.1 // indirect
179184
github.com/multiformats/go-base32 v0.1.0 // indirect
@@ -183,29 +188,30 @@ require (
183188
github.com/multiformats/go-multicodec v0.9.0 // indirect
184189
github.com/multiformats/go-multihash v0.2.3 // indirect
185190
github.com/multiformats/go-varint v0.0.7 // indirect
191+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
186192
github.com/ncruces/go-strftime v0.1.9 // indirect
187193
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
188194
github.com/oklog/run v1.1.0 // indirect
189195
github.com/opencontainers/go-digest v1.0.0 // indirect
190196
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
191197
github.com/pelletier/go-toml v1.9.5 // indirect
192198
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
193-
github.com/petermattis/goid v0.0.0-20231207134359-e60b3f734c67 // indirect
199+
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
194200
github.com/pierrec/xxHash v0.1.5 // indirect
195201
github.com/pkg/errors v0.9.1 // indirect
196202
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
197-
github.com/prometheus/client_golang v1.19.0 // indirect
203+
github.com/prometheus/client_golang v1.20.5 // indirect
198204
github.com/prometheus/client_model v0.6.1 // indirect
199-
github.com/prometheus/common v0.52.2 // indirect
200-
github.com/prometheus/procfs v0.13.0 // indirect
205+
github.com/prometheus/common v0.60.1 // indirect
206+
github.com/prometheus/procfs v0.15.1 // indirect
201207
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
202208
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
203209
github.com/rogpeppe/go-internal v1.12.0 // indirect
204-
github.com/rs/cors v1.8.3 // indirect
210+
github.com/rs/cors v1.11.1 // indirect
205211
github.com/rs/zerolog v1.33.0 // indirect
206212
github.com/sagikazarmark/locafero v0.4.0 // indirect
207213
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
208-
github.com/sasha-s/go-deadlock v0.3.1 // indirect
214+
github.com/sasha-s/go-deadlock v0.3.5 // indirect
209215
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
210216
github.com/sourcegraph/conc v0.3.0 // indirect
211217
github.com/spaolacci/murmur3 v1.1.0 // indirect
@@ -219,11 +225,12 @@ require (
219225
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
220226
github.com/tendermint/go-amino v0.16.0 // indirect
221227
github.com/tidwall/btree v1.7.0 // indirect
222-
github.com/tidwall/gjson v1.17.3 // indirect
228+
github.com/tidwall/gjson v1.18.0 // indirect
223229
github.com/tidwall/match v1.1.1 // indirect
224230
github.com/tidwall/pretty v1.2.0 // indirect
225231
github.com/tklauser/go-sysconf v0.3.12 // indirect
226232
github.com/tklauser/numcpus v0.6.1 // indirect
233+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
227234
github.com/tyler-smith/go-bip32 v1.0.0 // indirect
228235
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
229236
github.com/ulikunitz/xz v0.5.11 // indirect
@@ -237,22 +244,23 @@ require (
237244
go.opentelemetry.io/otel/metric v1.24.0 // indirect
238245
go.opentelemetry.io/otel/trace v1.24.0 // indirect
239246
go.uber.org/multierr v1.11.0 // indirect
240-
golang.org/x/crypto v0.26.0 // indirect
247+
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
248+
golang.org/x/crypto v0.28.0 // indirect
241249
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
242-
golang.org/x/mod v0.20.0 // indirect
243-
golang.org/x/net v0.27.0 // indirect
244-
golang.org/x/oauth2 v0.21.0 // indirect
245-
golang.org/x/sys v0.24.0 // indirect
246-
golang.org/x/term v0.23.0 // indirect
247-
golang.org/x/text v0.17.0 // indirect
250+
golang.org/x/mod v0.22.0 // indirect
251+
golang.org/x/net v0.30.0 // indirect
252+
golang.org/x/oauth2 v0.23.0 // indirect
253+
golang.org/x/sys v0.26.0 // indirect
254+
golang.org/x/term v0.25.0 // indirect
255+
golang.org/x/text v0.19.0 // indirect
248256
golang.org/x/time v0.5.0 // indirect
249257
golang.org/x/tools v0.23.0 // indirect
250258
google.golang.org/api v0.186.0 // indirect
251259
google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094 // indirect
252-
google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d // indirect
253-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5 // indirect
254-
google.golang.org/grpc v1.66.0 // indirect
255-
google.golang.org/protobuf v1.34.2 // indirect
260+
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
261+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
262+
google.golang.org/grpc v1.67.1 // indirect
263+
google.golang.org/protobuf v1.35.2 // indirect
256264
gopkg.in/ini.v1 v1.67.0 // indirect
257265
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
258266
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -276,7 +284,10 @@ replace (
276284
github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
277285
github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0
278286
github.com/btcsuite/btcd/btcec/v2 => github.com/btcsuite/btcd/btcec/v2 v2.3.3
287+
github.com/cosmos/interchain-security/v6 => github.com/cosmos/interchain-security/v6 v6.0.0-20241203112553-01f9698b4450
279288
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
289+
// Remove this when strangelove-ventures updates the interchain tests to import ICS v6
280290
github.com/strangelove-ventures/interchaintest/v8 => github.com/stana-miric/interchaintest/v8 v8.0.0-20241022073631-60f2480aacd4
281291
github.com/vedhavyas/go-subkey => github.com/strangelove-ventures/go-subkey v1.0.7
292+
282293
)

0 commit comments

Comments
 (0)