Skip to content

Commit 40a31de

Browse files
committed
test
1 parent 8e8cc3f commit 40a31de

File tree

4 files changed

+29
-23
lines changed

4 files changed

+29
-23
lines changed

app/keepers/keepers.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ func (appKeepers *AppKeepers) InitKeepers(
414414
govAuthority,
415415
)
416416

417-
interchainstakingIBCModule := interchainstaking.NewIBCModule(appKeepers.InterchainstakingKeeper)
417+
interchainstakingIBCModule := interchainstaking.NewIBCModule(appKeepers.InterchainstakingKeeper, &appKeepers.ICAControllerKeeper)
418418

419419
appKeepers.ParticipationRewardsKeeper = participationrewardskeeper.NewKeeper(
420420
appCodec,
@@ -467,8 +467,8 @@ func (appKeepers *AppKeepers) InitKeepers(
467467
ibcRouter.
468468
AddRoute(ibctransfertypes.ModuleName, ibcStack).
469469
AddRoute(icacontrollertypes.SubModuleName, icaControllerIBCModule).
470-
AddRoute(icahosttypes.SubModuleName, icaHostIBCModule).
471-
AddRoute(interchainstakingtypes.ModuleName, icaControllerIBCModule)
470+
AddRoute(icahosttypes.SubModuleName, icaHostIBCModule)
471+
//AddRoute(interchainstakingtypes.ModuleName, interchainstakingIBCModule)
472472
appKeepers.IBCKeeper.SetRouter(ibcRouter)
473473

474474
// create evidence keeper with router

x/interchainstaking/ibc_module.go

+24-18
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
sdk "github.com/cosmos/cosmos-sdk/types"
88
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
9-
9+
icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper"
1010
channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
1111
porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types"
1212
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
@@ -18,33 +18,35 @@ var _ porttypes.IBCModule = IBCModule{}
1818

1919
// IBCModule implements the ICS26 interface for interchain accounts controller chains.
2020
type IBCModule struct {
21-
keeper *keeper.Keeper
21+
keeper *keeper.Keeper
22+
icaKeeper *icacontrollerkeeper.Keeper
2223
}
2324

2425
// NewIBCModule creates a new IBCModule given the keeper.
25-
func NewIBCModule(k *keeper.Keeper) IBCModule {
26+
func NewIBCModule(k *keeper.Keeper, icaKeeper *icacontrollerkeeper.Keeper) IBCModule {
2627
return IBCModule{
27-
keeper: k,
28+
keeper: k,
29+
icaKeeper: icaKeeper,
2830
}
2931
}
3032

3133
// OnChanOpenInit implements the IBCModule interface.
3234
func (im IBCModule) OnChanOpenInit(
3335
ctx sdk.Context,
34-
_ channeltypes.Order,
35-
_ []string,
36+
order channeltypes.Order,
37+
connectionHops []string,
3638
portID string,
3739
channelID string,
3840
chanCap *capabilitytypes.Capability,
39-
_ channeltypes.Counterparty,
41+
counterparty channeltypes.Counterparty,
4042
version string,
4143
) (string, error) {
42-
return version, nil
44+
return im.icaKeeper.OnChanOpenInit(ctx, order, connectionHops, portID, channelID, chanCap, counterparty, version)
4345
}
4446

4547
// OnChanOpenTry implements the IBCModule interface.
4648
func (IBCModule) OnChanOpenTry(
47-
_ sdk.Context,
49+
ctx sdk.Context,
4850
_ channeltypes.Order,
4951
_ []string,
5052
_ string,
@@ -61,16 +63,20 @@ func (im IBCModule) OnChanOpenAck(
6163
ctx sdk.Context,
6264
portID,
6365
channelID string,
64-
_ string,
65-
_ string,
66+
counterpartyChannelID string,
67+
counterpartyVersion string,
6668
) error {
6769
// get connection from port
6870
connectionID, _, err := im.keeper.IBCKeeper.ChannelKeeper.GetChannelConnection(ctx, portID, channelID)
6971
if err != nil {
7072
return err
7173
}
72-
fmt.Println("OnChanOpenAck", portID, channelID, connectionID)
73-
return im.keeper.HandleChannelOpenAck(ctx, portID, connectionID)
74+
75+
err = im.keeper.HandleChannelOpenAck(ctx, portID, connectionID)
76+
if err != nil {
77+
return err
78+
}
79+
return im.icaKeeper.OnChanOpenAck(ctx, portID, channelID, connectionID)
7480
}
7581

7682
// OnChanOpenConfirm implements the IBCModule interface.
@@ -92,12 +98,12 @@ func (im IBCModule) OnChanCloseInit(
9298
}
9399

94100
// OnChanCloseConfirm implements the IBCModule interface.
95-
func (IBCModule) OnChanCloseConfirm(
96-
_ sdk.Context,
97-
_,
98-
_ string,
101+
func (im IBCModule) OnChanCloseConfirm(
102+
ctx sdk.Context,
103+
portID,
104+
channelID string,
99105
) error {
100-
return nil
106+
return im.icaKeeper.OnChanCloseConfirm(ctx, portID, channelID)
101107
}
102108

103109
// OnRecvPacket implements the IBCModule interface. A successful acknowledgement

x/interchainstaking/keeper/keeper_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func (suite *KeeperTestSuite) setupTestZones() {
137137
func (suite *KeeperTestSuite) setupChannelForICA(ctx sdk.Context, chainID, connectionID, accountSuffix, remotePrefix string) error {
138138
quicksilver := suite.GetQuicksilverApp(suite.chainA)
139139

140-
ibcModule := ics.NewIBCModule(quicksilver.InterchainstakingKeeper)
140+
ibcModule := ics.NewIBCModule(quicksilver.InterchainstakingKeeper, &quicksilver.ICAControllerKeeper)
141141
portID, err := icatypes.NewControllerPortID(chainID + "." + accountSuffix)
142142
if err != nil {
143143
return err

x/participationrewards/keeper/keeper_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ func (suite *KeeperTestSuite) setupChannelForICA(chainID, connectionID, accountS
354354
suite.T().Helper()
355355
quicksilver := suite.GetQuicksilverApp(suite.chainA)
356356

357-
ibcModule := ics.NewIBCModule(quicksilver.InterchainstakingKeeper)
357+
ibcModule := ics.NewIBCModule(quicksilver.InterchainstakingKeeper, &quicksilver.ICAControllerKeeper)
358358
portID, err := icatypes.NewControllerPortID(chainID + "." + accountSuffix)
359359
if err != nil {
360360
return err

0 commit comments

Comments
 (0)