diff --git a/crates/storage/storage-api/src/storage.rs b/crates/storage/storage-api/src/storage.rs index 513e3940e9..366983b862 100644 --- a/crates/storage/storage-api/src/storage.rs +++ b/crates/storage/storage-api/src/storage.rs @@ -3,7 +3,7 @@ use alloc::{ vec::Vec, }; use alloy_primitives::{Address, BlockNumber, B256, U256}; -use core::ops::{RangeBounds, RangeInclusive}; +use core::ops::RangeInclusive; use reth_primitives_traits::{StorageEntry, StorageSlotKey}; use reth_storage_errors::provider::ProviderResult; @@ -91,7 +91,7 @@ pub trait StorageChangeSetReader: Send { /// [`StorageSlotKey::Hashed`] based on the current storage mode. fn storage_changesets_range( &self, - range: impl RangeBounds, + range: impl core::ops::RangeBounds, ) -> ProviderResult>; /// Get the total count of all storage changes.