Skip to content

Commit

Permalink
chore : lint
Browse files Browse the repository at this point in the history
  • Loading branch information
emidev98 committed Aug 29, 2023
1 parent f16c7dc commit 7637b10
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/app_testing/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ func (s *AppTestSuite) Setup() {
GRPCQueryRouter: s.App.GRPCQueryRouter(),
Ctx: s.Ctx,
}
s.App.BankKeeper.SetParams(s.Ctx, banktypes.NewParams(true))
s.App.WasmKeeper.SetParams(s.Ctx, wasmtypes.DefaultParams())
err := s.App.BankKeeper.SetParams(s.Ctx, banktypes.NewParams(true))
s.Require().NoError(err)
err = s.App.WasmKeeper.SetParams(s.Ctx, wasmtypes.DefaultParams())
s.Require().NoError(err)

s.App.TokenFactoryKeeper.SetParams(s.Ctx, tokenfactorytypes.DefaultParams())
s.App.DistrKeeper.SetFeePool(s.Ctx, distrtypes.InitialFeePool())
}
Expand Down

0 comments on commit 7637b10

Please sign in to comment.