From a676c3a846ef001b1967f2fc6a5498ba0e97dfaa Mon Sep 17 00:00:00 2001 From: HaeSung Date: Tue, 21 Jun 2022 13:40:32 +0900 Subject: [PATCH] fix: defaultGenTxGas to 10 times --- simapp/helpers/test_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simapp/helpers/test_helpers.go b/simapp/helpers/test_helpers.go index 9ccecbd976c4..1eb496e57a71 100644 --- a/simapp/helpers/test_helpers.go +++ b/simapp/helpers/test_helpers.go @@ -14,7 +14,7 @@ import ( // SimAppChainID hardcoded chainID for simulation const ( - DefaultGenTxGas = 1000000 + DefaultGenTxGas = 10000000 SimAppChainID = "simulation-app" )