From f68f62aa8fc99c21aa5631c9d1c144d2a437d630 Mon Sep 17 00:00:00 2001
From: aljo242 <alex@skip.money>
Date: Tue, 4 Jun 2024 10:35:18 -0400
Subject: [PATCH] fix all

---
 tests/e2e/e2e_test.go | 4 ++--
 tests/e2e/suite.go    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go
index ffc0f5a..b54a870 100644
--- a/tests/e2e/e2e_test.go
+++ b/tests/e2e/e2e_test.go
@@ -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
diff --git a/tests/e2e/suite.go b/tests/e2e/suite.go
index 0e4b776..55d9c46 100644
--- a/tests/e2e/suite.go
+++ b/tests/e2e/suite.go
@@ -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
 			}
 		}