Skip to content

Commit

Permalink
fix all
Browse files Browse the repository at this point in the history
  • Loading branch information
aljo242 committed Jun 4, 2024
1 parent 420d58d commit f68f62a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
)

var (
minBaseGasPrice = sdkmath.LegacyMustNewDecFromStr("0.1")
baseGasPrice = sdkmath.LegacyOneDec()
minBaseGasPrice = sdkmath.LegacyMustNewDecFromStr("0.001")
baseGasPrice = sdkmath.LegacyMustNewDecFromStr("0.1")

// config params
numValidators = 4
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ func (s *TestSuite) TestSendTxIncrease() {
baseGasPrice = s.QueryDefaultGasPrice()
s.T().Log("gas price", baseGasPrice.String())

if baseGasPrice.Amount.GT(math.LegacyNewDec(1000000)) {
if baseGasPrice.Amount.GT(math.LegacyNewDec(10)) {
break
}
}
Expand Down

0 comments on commit f68f62a

Please sign in to comment.