Skip to content

Commit

Permalink
fixing more tests with initgenesis failure
Browse files Browse the repository at this point in the history
  • Loading branch information
spoo-bar committed Oct 3, 2023
1 parent 08e0a6f commit 1f98418
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions e2e/rewards_test.go
Expand Up @@ -32,11 +32,11 @@ func (s *E2ETestSuite) TestRewardsWithdrawProfitAndFees() {
chain := e2eTesting.NewTestChain(s.T(), 1,
// Set 1B total supply (10^9 * 10^6)
e2eTesting.WithGenAccounts(1),
e2eTesting.WithGenDefaultCoinBalance("1000000000000000"),
e2eTesting.WithGenDefaultCoinBalance("10000000000000000000"),
// Set bonded ratio to 30%
e2eTesting.WithBondAmount("300000000000000"),
e2eTesting.WithBondAmount("3000000000000000000"),
// Override the default Tx fee
e2eTesting.WithDefaultFeeAmount("10000000"),
e2eTesting.WithDefaultFeeAmount("100000000000"),
// Set block gas limit (Archway mainnet param)
e2eTesting.WithBlockGasLimit(100_000_000),
// x/rewards distribution params
Expand Down Expand Up @@ -384,11 +384,11 @@ func (s *E2ETestSuite) TestTXFailsAfterAnteHandler() {
chain := e2eTesting.NewTestChain(s.T(), 1,
// Set 1B total supply (10^9 * 10^6)
e2eTesting.WithGenAccounts(1),
e2eTesting.WithGenDefaultCoinBalance("1000000000000000"),
e2eTesting.WithGenDefaultCoinBalance("10000000000000000000"),
// Set bonded ratio to 30%
e2eTesting.WithBondAmount("300000000000000"),
e2eTesting.WithBondAmount("3000000000000000000"),
// Override the default Tx fee
e2eTesting.WithDefaultFeeAmount("10000000"),
e2eTesting.WithDefaultFeeAmount("100000000000"),
// Set block gas limit (Archway mainnet param)
e2eTesting.WithBlockGasLimit(100_000_000),
// x/rewards distribution params
Expand Down Expand Up @@ -595,11 +595,11 @@ func (s *E2ETestSuite) TestSubMsgRevert() {
chain := e2eTesting.NewTestChain(s.T(), 1,
// Set 1B total supply (10^9 * 10^6)
e2eTesting.WithGenAccounts(2),
e2eTesting.WithGenDefaultCoinBalance("1000000000000000"),
e2eTesting.WithGenDefaultCoinBalance("10000000000000000000"),
// Set bonded ratio to 30%
e2eTesting.WithBondAmount("300000000000000"),
e2eTesting.WithBondAmount("3000000000000000000"),
// Override the default Tx fee
e2eTesting.WithDefaultFeeAmount("10000000"),
e2eTesting.WithDefaultFeeAmount("100000000000"),
// Set block gas limit (Archway mainnet param)
e2eTesting.WithBlockGasLimit(100_000_000),
// x/rewards distribution params
Expand Down

0 comments on commit 1f98418

Please sign in to comment.