Skip to content

Commit fd5b46a

Browse files
author
Joe Bowman
committed
switch order of controller and keeper on chanopenack
1 parent 8a740fd commit fd5b46a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

x/interchainstaking/ibc_module.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,13 @@ func (im IBCModule) OnChanOpenAck(
7272
return err
7373
}
7474

75-
err = im.keeper.HandleChannelOpenAck(ctx, portID, connectionID)
75+
err = im.icaKeeper.OnChanOpenAck(ctx, portID, channelID, counterpartyVersion)
7676
if err != nil {
7777
return err
7878
}
79-
return im.icaKeeper.OnChanOpenAck(ctx, portID, channelID, connectionID)
79+
80+
return im.keeper.HandleChannelOpenAck(ctx, portID, connectionID)
81+
8082
}
8183

8284
// OnChanOpenConfirm implements the IBCModule interface.

0 commit comments

Comments
 (0)