From 8303d789cddb664b3340f2821dc8c1eb1a4e4128 Mon Sep 17 00:00:00 2001 From: pgherveou Date: Wed, 8 Oct 2025 15:15:08 +0200 Subject: [PATCH] use 10^6 for gas filler --- crates/node/src/provider_utils/fallback_gas_provider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node/src/provider_utils/fallback_gas_provider.rs b/crates/node/src/provider_utils/fallback_gas_provider.rs index cb42bcd..78bc94a 100644 --- a/crates/node/src/provider_utils/fallback_gas_provider.rs +++ b/crates/node/src/provider_utils/fallback_gas_provider.rs @@ -27,7 +27,7 @@ impl FallbackGasFiller { impl Default for FallbackGasFiller { fn default() -> Self { - FallbackGasFiller::new(25_000_000, 1_000_000_000, 1_000_000_000) + FallbackGasFiller::new(10_000_000, 1_000_000_000, 1_000_000_000) } }