Skip to content

Commit 41409c5

Browse files
chore: Bump ibc to recent rc (#2542)
* Bump ibc to recent rc * tidy test mod
1 parent bb98d29 commit 41409c5

File tree

9 files changed

+11
-7
lines changed

9 files changed

+11
-7
lines changed

app/consumer-democracy/app.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,7 @@ func New(
490490
app.GetSubspace(ibctransfertypes.ModuleName),
491491
app.IBCKeeper.ChannelKeeper,
492492
app.IBCKeeper.ChannelKeeper,
493+
app.IBCKeeper.ChannelKeeperV2,
493494
app.AccountKeeper,
494495
app.BankKeeper,
495496
authtypes.NewModuleAddress(govtypes.ModuleName).String(),

app/consumer/app.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ func New(
378378
app.GetSubspace(ibctransfertypes.ModuleName),
379379
app.IBCKeeper.ChannelKeeper,
380380
app.IBCKeeper.ChannelKeeper,
381+
app.IBCKeeper.ChannelKeeperV2,
381382
app.AccountKeeper,
382383
app.BankKeeper,
383384
authtypes.NewModuleAddress(govtypes.ModuleName).String(),

app/consumer/genesis_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ func transformConsumerGenesis(filePath string, version *string) ([]byte, error)
335335
cmd.SetArgs(args)
336336

337337
result := new(bytes.Buffer)
338-
cmd.SetOutput(result)
338+
cmd.SetOut(result)
339339
_, err = cmd.ExecuteC()
340340
if err != nil {
341341
return nil, fmt.Errorf("Error running transformation command: %v", err)

app/provider/app.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,7 @@ func New(
486486
app.GetSubspace(ibctransfertypes.ModuleName),
487487
app.IBCKeeper.ChannelKeeper,
488488
app.IBCKeeper.ChannelKeeper,
489+
app.IBCKeeper.ChannelKeeperV2,
489490
app.AccountKeeper,
490491
app.BankKeeper,
491492
authtypes.NewModuleAddress(govtypes.ModuleName).String(),

app/sovereign/app.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,7 @@ func New(
448448
app.GetSubspace(ibctransfertypes.ModuleName),
449449
app.IBCKeeper.ChannelKeeper,
450450
app.IBCKeeper.ChannelKeeper,
451+
app.IBCKeeper.ChannelKeeperV2,
451452
app.AccountKeeper,
452453
app.BankKeeper,
453454
authtypes.NewModuleAddress(govtypes.ModuleName).String(),

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ require (
152152
cosmossdk.io/x/upgrade v0.1.4
153153
github.com/cosmos/cosmos-db v1.1.1
154154
github.com/cosmos/ibc-go/modules/capability v1.0.1
155-
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0
155+
github.com/cosmos/ibc-go/v10 v10.0.0-beta.1
156156
github.com/informalsystems/itf-go v0.0.1
157157
github.com/spf13/viper v1.19.0
158158
golang.org/x/mod v0.23.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ github.com/cosmos/iavl v1.2.2 h1:qHhKW3I70w+04g5KdsdVSHRbFLgt3yY3qTMd4Xa4rC8=
369369
github.com/cosmos/iavl v1.2.2/go.mod h1:GiM43q0pB+uG53mLxLDzimxM9l/5N9UuSY3/D0huuVw=
370370
github.com/cosmos/ibc-go/modules/capability v1.0.1 h1:ibwhrpJ3SftEEZRxCRkH0fQZ9svjthrX2+oXdZvzgGI=
371371
github.com/cosmos/ibc-go/modules/capability v1.0.1/go.mod h1:rquyOV262nGJplkumH+/LeYs04P3eV8oB7ZM4Ygqk4E=
372-
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0 h1:9iNxbMXWWphbkGCX8Eeq63RV0mMFmA392YVKcajl4xc=
373-
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0/go.mod h1:HL9gEJtUG3zu9TwC/P8/uAMwle2YLQjkXEbtLKLP6bE=
372+
github.com/cosmos/ibc-go/v10 v10.0.0-beta.1 h1:IPAKp0ySxpkBCwzhaaVhbwTGZFnIm2Qq6owD6LW2Dvo=
373+
github.com/cosmos/ibc-go/v10 v10.0.0-beta.1/go.mod h1:ikF0o+cl0V7jwwe74fceRD5N2T7yfpRZju2fVJDdcu8=
374374
github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU=
375375
github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0=
376376
github.com/cosmos/ledger-cosmos-go v0.13.3 h1:7ehuBGuyIytsXbd4MP43mLeoN2LTOEnk5nvue4rK+yM=

tests/interchain/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
cosmossdk.io/x/upgrade v0.1.4
88
github.com/cometbft/cometbft v0.38.17
99
github.com/cosmos/cosmos-sdk v0.50.12
10-
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20250218182351-fcb6809d58dd
10+
github.com/cosmos/ibc-go/v10 v10.0.0-beta.1
1111
github.com/cosmos/interchain-security/v7 v7.0.0-20250220171855-c39340d2cf4c
1212
github.com/docker/docker v28.0.0+incompatible
1313
github.com/strangelove-ventures/interchaintest/v8 v8.7.1

tests/interchain/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ github.com/cosmos/iavl v1.2.4 h1:IHUrG8dkyueKEY72y92jajrizbkZKPZbMmG14QzsEkw=
390390
github.com/cosmos/iavl v1.2.4/go.mod h1:GiM43q0pB+uG53mLxLDzimxM9l/5N9UuSY3/D0huuVw=
391391
github.com/cosmos/ibc-go/modules/capability v1.0.1 h1:ibwhrpJ3SftEEZRxCRkH0fQZ9svjthrX2+oXdZvzgGI=
392392
github.com/cosmos/ibc-go/modules/capability v1.0.1/go.mod h1:rquyOV262nGJplkumH+/LeYs04P3eV8oB7ZM4Ygqk4E=
393-
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20250218182351-fcb6809d58dd h1:s/5otNADKMbtwr6ey0VG9eE2dIMh8DuGzPdZWaRzds8=
394-
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20250218182351-fcb6809d58dd/go.mod h1:ikF0o+cl0V7jwwe74fceRD5N2T7yfpRZju2fVJDdcu8=
393+
github.com/cosmos/ibc-go/v10 v10.0.0-beta.1 h1:IPAKp0ySxpkBCwzhaaVhbwTGZFnIm2Qq6owD6LW2Dvo=
394+
github.com/cosmos/ibc-go/v10 v10.0.0-beta.1/go.mod h1:ikF0o+cl0V7jwwe74fceRD5N2T7yfpRZju2fVJDdcu8=
395395
github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU=
396396
github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0=
397397
github.com/cosmos/interchaintest/v8 v8.8.2-0.20250224162529-535379c62c73 h1:cIWTHr2fXdqNrVaFHz92g28SeYKDkF1PN6/Tm+kZMdQ=

0 commit comments

Comments
 (0)