Skip to content

Commit

Permalink
fix: rebase with main
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockwarr committed Jul 12, 2024
1 parent 6afb8ab commit bfe60aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/tax/keeper/custom_tx_fee_checker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func TestCustomTxFeeCheckerSuccessfulInNLS(t *testing.T) {

// Fail to pay fees in unsupported denom.
func TestCustomTxFeeCheckerFailWhenUnsupportedDenom(t *testing.T) {
taxKeeper, ctx, _ := keepertest.TaxKeeper(t, true, sdk.DecCoins{sdk.NewDecCoin("unls", sdk.NewInt(1))})
taxKeeper, ctx, _ := keepertest.TaxKeeper(t, true, sdk.DecCoins{sdk.NewDecCoin("unls", math.NewInt(1))})
// create a new CustomTxFeeChecker
feeTx := keepertest.MockFeeTx{
Msgs: []sdk.Msg{},
Expand Down Expand Up @@ -243,7 +243,7 @@ func TestCustomTxFeeCheckerFailOnZeroFees(t *testing.T) {

// Successfully pay fees in unls which represents NLS. Minimum gas prices set to unls.
func TestCustomTxFeeCheckerFailWhenEmptyFee(t *testing.T) {
taxKeeper, ctx, _ := keepertest.TaxKeeper(t, true, sdk.DecCoins{sdk.NewDecCoin("unls", sdk.NewInt(1))})
taxKeeper, ctx, _ := keepertest.TaxKeeper(t, true, sdk.DecCoins{sdk.NewDecCoin("unls", math.NewInt(1))})
// create a new CustomTxFeeChecker
feeTx := keepertest.MockFeeTx{}

Expand Down

0 comments on commit bfe60aa

Please sign in to comment.