From 7a885823bc4a8a72c41dcd1381cba9819f487349 Mon Sep 17 00:00:00 2001 From: Austin Chandra Date: Thu, 23 Mar 2023 09:31:50 -0700 Subject: [PATCH] Increase DefaultGasAdjustment to fix --gas=auto interaction (#20) Co-authored-by: Vladislav Varadinov --- client/flags/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/flags/flags.go b/client/flags/flags.go index 2b2d0ffd4d65..745de9e97aa1 100644 --- a/client/flags/flags.go +++ b/client/flags/flags.go @@ -15,7 +15,7 @@ const ( // DefaultGasAdjustment is applied to gas estimates to avoid tx execution // failures due to state changes that might occur between the tx simulation // and the actual run. - DefaultGasAdjustment = 1.2 + DefaultGasAdjustment = 1.3 DefaultGasLimit = 200000 FlagAuto = "auto"