primitives: rm more alloy_primitives reexports (#11250)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Thomas Coratger
2024-09-26 18:18:56 +02:00
committed by GitHub
parent 2e05ec008a
commit ad64de8962
19 changed files with 39 additions and 43 deletions

View File

@ -136,7 +136,7 @@ impl StateProvider for StateProviderTest {
&self,
account: Address,
storage_key: StorageKey,
) -> ProviderResult<Option<reth_primitives::StorageValue>> {
) -> ProviderResult<Option<alloy_primitives::StorageValue>> {
Ok(self.accounts.get(&account).and_then(|(storage, _)| storage.get(&storage_key).copied()))
}