From c2369a0842b9f9caa599ee0abc5f8cf093fb4f51 Mon Sep 17 00:00:00 2001 From: Sujong Lee Date: Thu, 18 Jul 2024 17:27:41 +0900 Subject: [PATCH] bug: fix ibc transfer from canto to external chain (#71) * fix: Set ics4 wrapper for ibc transfer keeper * chore: Remove comment related ibc fee module --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index a172949b7..63603c843 100644 --- a/app/app.go +++ b/app/app.go @@ -582,7 +582,7 @@ func NewCanto( // since fee middleware will wrap the IBCKeeper for underlying application. app.TransferKeeper = ibctransferkeeper.NewKeeper( appCodec, keys[ibctransfertypes.StoreKey], app.GetSubspace(ibctransfertypes.ModuleName), - nil, // ISC4 Wrapper: fee IBC middleware + app.IBCKeeper.ChannelKeeper, // ICS4 Wrapper app.IBCKeeper.ChannelKeeper, app.IBCKeeper.PortKeeper, app.AccountKeeper, app.BankKeeper, scopedTransferKeeper, authtypes.NewModuleAddress(govtypes.ModuleName).String(),