Skip to content

Commit

Permalink
fix: fix IBC ISC4 Wrappers
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurist-85 committed Oct 13, 2023
1 parent 04f547b commit 9e014ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ func NewHaqq(

app.TransferKeeper = transferkeeper.NewKeeper(
appCodec, keys[ibctransfertypes.StoreKey], app.GetSubspace(ibctransfertypes.ModuleName),
nil, // ICS4 Wrapper
app.IBCKeeper.ChannelKeeper, // ICS4 Wrapper
app.IBCKeeper.ChannelKeeper, &app.IBCKeeper.PortKeeper,
app.AccountKeeper, app.BankKeeper, scopedTransferKeeper,
app.Erc20Keeper, // Add ERC20 Keeper for ERC20 transfers
Expand All @@ -538,7 +538,7 @@ func NewHaqq(
app.ICAHostKeeper = icahostkeeper.NewKeeper(
appCodec, app.keys[icahosttypes.StoreKey],
app.GetSubspace(icahosttypes.SubModuleName),
nil,
app.IBCKeeper.ChannelKeeper,
app.IBCKeeper.ChannelKeeper,
&app.IBCKeeper.PortKeeper,
app.AccountKeeper,
Expand Down

0 comments on commit 9e014ae

Please sign in to comment.