Skip to content

Commit

Permalink
patch: IBC module ordering to allow for ICS29 relaying
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Aug 6, 2024
1 parent bf140aa commit b561dbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,6 @@ func NewAppKeepers(
// Create Transfer Stack
var transferStack porttypes.IBCModule
transferStack = transfer.NewIBCModule(appKeepers.TransferKeeper)
transferStack = ibcfee.NewIBCMiddleware(transferStack, appKeepers.IBCFeeKeeper)
transferStack = ibc_hooks.NewIBCMiddleware(transferStack, &appKeepers.HooksICS4Wrapper)
transferStack = packetforward.NewIBCMiddleware(
transferStack,
Expand All @@ -689,6 +688,8 @@ func NewAppKeepers(
packetforwardkeeper.DefaultForwardTransferPacketTimeoutTimestamp,
packetforwardkeeper.DefaultRefundTransferPacketTimeoutTimestamp,
)
// ibcfee must come after PFM since PFM does not understand IncentivizedAcknowlegements (ICS29)
transferStack = ibcfee.NewIBCMiddleware(transferStack, appKeepers.IBCFeeKeeper)

// initialize ICA module with mock module as the authentication module on the controller side
var icaControllerStack porttypes.IBCModule
Expand Down

0 comments on commit b561dbf

Please sign in to comment.