Skip to content

Commit

Permalink
fix: fix rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
dadamu committed May 19, 2023
1 parent b0cb173 commit 5f5e86e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x/subspaces/ante/tx_checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package ante
import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
antetypes "github.com/desmos-labs/desmos/v5/x/subspaces/ante/types"
)

// CheckTxFeeWithSubspaceMinPrices returns the tx checker that including the subspace allowed tokens into minimum prices list
func CheckTxFeeWithSubspaceMinPrices(txFeeChecker ante.TxFeeChecker, sk SubspacesKeeper) ante.TxFeeChecker {
func CheckTxFeeWithSubspaceMinPrices(txFeeChecker ante.TxFeeChecker, sk antetypes.SubspacesKeeper) ante.TxFeeChecker {
return func(ctx sdk.Context, tx sdk.Tx) (sdk.Coins, int64, error) {
subspaceID, isSubspaceTx := GetTxSubspaceID(tx)
if !isSubspaceTx {
Expand Down

0 comments on commit 5f5e86e

Please sign in to comment.