From ee6fdd6b222d1296ef6c3bacf3a8b93d8f5551d2 Mon Sep 17 00:00:00 2001 From: HaeSung Date: Tue, 21 Jun 2022 22:48:54 +0900 Subject: [PATCH] chore(backport): 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 f9725adfbc00..36755ff8ae8e 100644 --- a/simapp/helpers/test_helpers.go +++ b/simapp/helpers/test_helpers.go @@ -16,7 +16,7 @@ import ( // TODO: Implement a tool to check for gas growth. For now, // we must increase this across the board for longer runs to work const ( - DefaultGenTxGas = 2000000 + DefaultGenTxGas = 10000000 SimAppChainID = "simulation-app" )