Skip to content

Commit 420ca50

Browse files
committed
use ibctransfer appmodule directly instead from struct
1 parent b541402 commit 420ca50

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/modules.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ import (
5050
ibchookstypes "github.com/cosmos/ibc-apps/modules/ibc-hooks/v10/types"
5151
ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts"
5252
icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types"
53+
ibctransfer "github.com/cosmos/ibc-go/v10/modules/apps/transfer"
5354
ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
5455
ibc "github.com/cosmos/ibc-go/v10/modules/core"
5556
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
@@ -104,7 +105,7 @@ func appModules(
104105
packetforward.NewAppModule(app.PacketForwardKeeper, app.GetSubspace(packetforwardtypes.ModuleName)),
105106
params.NewAppModule(*app.ParamsKeeper),
106107
halving.NewAppModule(appCodec, *app.HalvingKeeper),
107-
app.TransferModule,
108+
ibctransfer.NewAppModule(*app.TransferKeeper),
108109
ibchooks.NewAppModule(*app.AccountKeeper),
109110
ica.NewAppModule(app.ICAControllerKeeper, app.ICAHostKeeper),
110111
wasm.NewAppModule(appCodec, app.WasmKeeper, app.StakingKeeper, app.AccountKeeper, app.BankKeeper, app.MsgServiceRouter(), app.GetSubspace(wasm.ModuleName)),

0 commit comments

Comments
 (0)