Skip to content

Commit

Permalink
fix ante test
Browse files Browse the repository at this point in the history
  • Loading branch information
phamminh0811 committed Jul 26, 2024
1 parent c98c617 commit 4523ec5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x/tax2gas/ante/ante_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ func createTestApp(isCheckTx bool, tempDir string) (*terraapp.TerraApp, sdk.Cont
app.TreasuryKeeper.SetParams(ctx, treasurytypes.DefaultParams())
app.DistrKeeper.SetParams(ctx, distributiontypes.DefaultParams())
app.DistrKeeper.SetFeePool(ctx, distributiontypes.InitialFeePool())
app.Tax2gasKeeper.SetParams(ctx, tax2gastypes.DefaultParams())
tax2gasParams := tax2gastypes.DefaultParams()
tax2gasParams.Enabled = true
app.Tax2gasKeeper.SetParams(ctx, tax2gasParams)

return app, ctx
}
Expand Down

0 comments on commit 4523ec5

Please sign in to comment.