Skip to content

Commit

Permalink
fix (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuantran1702 authored Mar 4, 2024
1 parent d326279 commit b12eca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/feeabs/ante/decorate.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func (famfd FeeAbstrationMempoolFeeDecorator) AnteHandle(ctx sdk.Context, tx sdk
if hostChainConfig.Frozen {
return ctx, sdkerrors.Wrapf(feeabstypes.ErrHostZoneFrozen, "cannot deduct fee as host zone is frozen")
}
nativeCoinsFees, err := famfd.feeabsKeeper.CalculateNativeFromIBCCoins(ctx, nonZeroCoinFeesReq, hostChainConfig)
nativeCoinsFees, err := famfd.feeabsKeeper.CalculateNativeFromIBCCoins(ctx, feeCoinsNonZeroDenom, hostChainConfig)
if err != nil {
return ctx, sdkerrors.Wrapf(errorstypes.ErrInsufficientFee, "insufficient fees")
}
Expand Down

0 comments on commit b12eca5

Please sign in to comment.