From 08928c2b5d576f2dfb80e1199e2b3f20fe76545c Mon Sep 17 00:00:00 2001 From: viktorking7 <140458814+viktorking7@users.noreply.github.com> Date: Mon, 5 Jan 2026 15:08:44 +0100 Subject: [PATCH] Update rpc.rs --- crates/rpc/src/eth/rpc.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/rpc/src/eth/rpc.rs b/crates/rpc/src/eth/rpc.rs index fa20f6f8..e02a9955 100644 --- a/crates/rpc/src/eth/rpc.rs +++ b/crates/rpc/src/eth/rpc.rs @@ -347,7 +347,7 @@ where let mut block_id = block_number.unwrap_or_default(); let mut pending_overrides = EvmOverrides::default(); - // If the call is to pending block use cached override (if they exist) + // If the call is to pending block use cached override (if it exists) if block_id.is_pending() { self.metrics.call.increment(1); let pending_blocks = self.flashblocks_state.get_pending_blocks(); @@ -388,7 +388,7 @@ where let mut block_id = block_number.unwrap_or_default(); let mut pending_overrides = EvmOverrides::default(); - // If the call is to pending block use cached override (if they exist) + // If the call is to pending block use cached override (if it exists) if block_id.is_pending() { self.metrics.estimate_gas.increment(1); let pending_blocks = self.flashblocks_state.get_pending_blocks(); @@ -419,7 +419,7 @@ where let mut block_id = block_number.unwrap_or_default(); let mut pending_overrides = EvmOverrides::default(); - // If the call is to pending block use cached override (if they exist) + // If the call is to pending block use cached override (if it exists) if block_id.is_pending() { self.metrics.simulate_v1.increment(1); let pending_blocks = self.flashblocks_state.get_pending_blocks();