Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
aljo242 committed Jun 4, 2024
1 parent 67891a6 commit 183851f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/e2e/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,8 @@ func (s *TestSuite) TestSendTxIncrease() {
gas := int64(20000100)
sendAmt := int64(100)

params := s.QueryParams()

s.Run("expect fee market gas price to increase", func() {
s.T().Log("performing sends...")
for {
Expand Down Expand Up @@ -480,7 +482,7 @@ func (s *TestSuite) TestSendTxIncrease() {
baseGasPrice = s.QueryDefaultGasPrice()
s.T().Log("gas price", baseGasPrice.String())

if baseGasPrice.Amount.GT(math.LegacyNewDec(10)) {
if baseGasPrice.Amount.GT(params.MinBaseGasPrice.Mul(math.LegacyNewDec(100))) {
break
}
}
Expand Down

0 comments on commit 183851f

Please sign in to comment.