From 4eb6c6ad9aaf8ecfa16b55963eb3d1bffee11644 Mon Sep 17 00:00:00 2001 From: "Brian (Sunghoon) Cho" Date: Fri, 23 Jun 2023 15:36:56 -0700 Subject: [PATCH] [Gas Estimation] enable (#8801) ### Description Enable gas estimation as default, so the updated estimation is deployed in prod on the next release. --- config/src/config/gas_estimation_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/config/gas_estimation_config.rs b/config/src/config/gas_estimation_config.rs index aed668d880b5af..2da33ed0be0016 100644 --- a/config/src/config/gas_estimation_config.rs +++ b/config/src/config/gas_estimation_config.rs @@ -37,7 +37,7 @@ pub struct GasEstimationConfig { impl Default for GasEstimationConfig { fn default() -> GasEstimationConfig { GasEstimationConfig { - enabled: false, + enabled: true, static_override: None, full_block_txns: 250, low_block_history: 10,