From 2c443a3dcb49dee7e4b6a426be3c0631d042cbef Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sat, 14 Feb 2026 12:03:20 +0100 Subject: [PATCH] fix: remove unused `RangeBounds` import in storage-api (#22176) Co-authored-by: Amp --- crates/storage/storage-api/src/storage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.