Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
fix gov test
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdevbear committed Oct 24, 2023
1 parent fcd210b commit bba6e2f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cosmos/precompile/governance/governance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ var _ = Describe("Governance Precompile", func() {
common.BytesToAddress(caller),
big.NewInt(0),
)
params, err := gk.Params.Get(ctx)
Expect(err).ToNot(HaveOccurred())
params.MinDeposit = sdk.NewCoins(sdk.NewInt64Coin("abera", 100))
err = gk.Params.Set(ctx, params)
Expect(err).ToNot(HaveOccurred())
})

AfterEach(func() {
Expand Down

0 comments on commit bba6e2f

Please sign in to comment.