mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
primitives: use alloy KECCAK_EMPTY constant (#11851)
This commit is contained in:
@ -26,5 +26,6 @@ reth-trie.workspace = true
|
||||
# ethereum
|
||||
alloy-eips.workspace = true
|
||||
alloy-primitives.workspace = true
|
||||
alloy-consensus.workspace = true
|
||||
|
||||
auto_impl.workspace = true
|
||||
|
||||
@ -2,11 +2,12 @@ use super::{
|
||||
AccountReader, BlockHashReader, BlockIdReader, StateProofProvider, StateRootProvider,
|
||||
StorageRootProvider,
|
||||
};
|
||||
use alloy_consensus::constants::KECCAK_EMPTY;
|
||||
use alloy_eips::{BlockId, BlockNumHash, BlockNumberOrTag};
|
||||
use alloy_primitives::{Address, BlockHash, BlockNumber, StorageKey, StorageValue, B256, U256};
|
||||
use auto_impl::auto_impl;
|
||||
use reth_execution_types::ExecutionOutcome;
|
||||
use reth_primitives::{Bytecode, KECCAK_EMPTY};
|
||||
use reth_primitives::Bytecode;
|
||||
use reth_storage_errors::provider::{ProviderError, ProviderResult};
|
||||
|
||||
/// Type alias of boxed [`StateProvider`].
|
||||
|
||||
Reference in New Issue
Block a user