Skip to content

Commit

Permalink
Merge pull request #11 from b-harvest/patch/fix-ibc
Browse files Browse the repository at this point in the history
bug: fix ibc transfer from ethermint to external chain
  • Loading branch information
dudong2 authored Jul 29, 2024
2 parents c44971b + 6d675de commit ba254fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ func NewEthermintApp(
// 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(),
Expand Down

0 comments on commit ba254fb

Please sign in to comment.