6
6
7
7
sdk "github.com/cosmos/cosmos-sdk/types"
8
8
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"
10
10
channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
11
11
porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types"
12
12
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
@@ -18,33 +18,35 @@ var _ porttypes.IBCModule = IBCModule{}
18
18
19
19
// IBCModule implements the ICS26 interface for interchain accounts controller chains.
20
20
type IBCModule struct {
21
- keeper * keeper.Keeper
21
+ keeper * keeper.Keeper
22
+ icaKeeper * icacontrollerkeeper.Keeper
22
23
}
23
24
24
25
// 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 {
26
27
return IBCModule {
27
- keeper : k ,
28
+ keeper : k ,
29
+ icaKeeper : icaKeeper ,
28
30
}
29
31
}
30
32
31
33
// OnChanOpenInit implements the IBCModule interface.
32
34
func (im IBCModule ) OnChanOpenInit (
33
35
ctx sdk.Context ,
34
- _ channeltypes.Order ,
35
- _ []string ,
36
+ order channeltypes.Order ,
37
+ connectionHops []string ,
36
38
portID string ,
37
39
channelID string ,
38
40
chanCap * capabilitytypes.Capability ,
39
- _ channeltypes.Counterparty ,
41
+ counterparty channeltypes.Counterparty ,
40
42
version string ,
41
43
) (string , error ) {
42
- return version , nil
44
+ return im . icaKeeper . OnChanOpenInit ( ctx , order , connectionHops , portID , channelID , chanCap , counterparty , version )
43
45
}
44
46
45
47
// OnChanOpenTry implements the IBCModule interface.
46
48
func (IBCModule ) OnChanOpenTry (
47
- _ sdk.Context ,
49
+ ctx sdk.Context ,
48
50
_ channeltypes.Order ,
49
51
_ []string ,
50
52
_ string ,
@@ -61,16 +63,20 @@ func (im IBCModule) OnChanOpenAck(
61
63
ctx sdk.Context ,
62
64
portID ,
63
65
channelID string ,
64
- _ string ,
65
- _ string ,
66
+ counterpartyChannelID string ,
67
+ counterpartyVersion string ,
66
68
) error {
67
69
// get connection from port
68
70
connectionID , _ , err := im .keeper .IBCKeeper .ChannelKeeper .GetChannelConnection (ctx , portID , channelID )
69
71
if err != nil {
70
72
return err
71
73
}
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 )
74
80
}
75
81
76
82
// OnChanOpenConfirm implements the IBCModule interface.
@@ -92,12 +98,12 @@ func (im IBCModule) OnChanCloseInit(
92
98
}
93
99
94
100
// 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 ,
99
105
) error {
100
- return nil
106
+ return im . icaKeeper . OnChanCloseConfirm ( ctx , portID , channelID )
101
107
}
102
108
103
109
// OnRecvPacket implements the IBCModule interface. A successful acknowledgement
0 commit comments