mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
primitives: rm more alloy_primitives reexports (#11222)
This commit is contained in:
@ -182,7 +182,8 @@ impl BlockBatchRecord {
|
||||
mod tests {
|
||||
use super::*;
|
||||
use alloc::collections::BTreeMap;
|
||||
use reth_primitives::{Address, Log, Receipt};
|
||||
use alloy_primitives::Address;
|
||||
use reth_primitives::{Log, Receipt};
|
||||
use reth_prune_types::{PruneMode, ReceiptsLogPruneConfig};
|
||||
|
||||
#[test]
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
use crate::primitives::alloy_primitives::{BlockNumber, StorageKey, StorageValue};
|
||||
use alloy_primitives::Address;
|
||||
use core::ops::{Deref, DerefMut};
|
||||
use reth_primitives::{Account, Address, B256, U256};
|
||||
use reth_primitives::{Account, B256, U256};
|
||||
use reth_storage_errors::provider::{ProviderError, ProviderResult};
|
||||
use revm::{
|
||||
db::DatabaseRef,
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
use crate::precompile::HashMap;
|
||||
use alloy_primitives::Address;
|
||||
use reth_chainspec::{ChainSpec, EthereumHardforks};
|
||||
use reth_consensus_common::calc;
|
||||
use reth_primitives::{Address, Block, Withdrawal, Withdrawals, U256};
|
||||
use reth_primitives::{Block, Withdrawal, Withdrawals, U256};
|
||||
|
||||
/// Collect all balance changes at the end of the block.
|
||||
///
|
||||
|
||||
@ -2,9 +2,8 @@ use std::collections::HashSet;
|
||||
|
||||
use crate::precompile::HashMap;
|
||||
use alloc::vec::Vec;
|
||||
use reth_primitives::{
|
||||
keccak256, Account, Address, BlockNumber, Bytecode, Bytes, StorageKey, B256, U256,
|
||||
};
|
||||
use alloy_primitives::{keccak256, Address, BlockNumber, StorageKey};
|
||||
use reth_primitives::{Account, Bytecode, Bytes, B256, U256};
|
||||
use reth_storage_api::{
|
||||
AccountReader, BlockHashReader, StateProofProvider, StateProvider, StateRootProvider,
|
||||
StorageRootProvider,
|
||||
|
||||
Reference in New Issue
Block a user