Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crates/rpc/src/eth/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down