From bf7348e631066ca9b1e9732246253b8e7bc87224 Mon Sep 17 00:00:00 2001 From: HaeSung Date: Tue, 21 Jun 2022 22:48:54 +0900 Subject: [PATCH] fix: defaultGenTxGas to 10 times (#12314) --- 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" )