diff --git a/tests/e2e/suite.go b/tests/e2e/suite.go index 55d9c46..fd7500c 100644 --- a/tests/e2e/suite.go +++ b/tests/e2e/suite.go @@ -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 { @@ -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 } }