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:
@ -1,7 +1,7 @@
|
||||
//! Shared models for <https://github.com/ethereum/tests>
|
||||
|
||||
use crate::{assert::assert_equal, Error};
|
||||
use alloy_primitives::{Address, Bloom, Bytes, B256, B64, U256};
|
||||
use alloy_primitives::{keccak256, Address, Bloom, Bytes, B256, B64, U256};
|
||||
use reth_chainspec::{ChainSpec, ChainSpecBuilder};
|
||||
use reth_db::tables;
|
||||
use reth_db_api::{
|
||||
@ -9,8 +9,7 @@ use reth_db_api::{
|
||||
transaction::{DbTx, DbTxMut},
|
||||
};
|
||||
use reth_primitives::{
|
||||
keccak256, Account as RethAccount, Bytecode, Header as RethHeader, SealedHeader, StorageEntry,
|
||||
Withdrawals,
|
||||
Account as RethAccount, Bytecode, Header as RethHeader, SealedHeader, StorageEntry, Withdrawals,
|
||||
};
|
||||
use serde::Deserialize;
|
||||
use std::{collections::BTreeMap, ops::Deref};
|
||||
|
||||
@ -18,7 +18,8 @@ use std::{
|
||||
///
|
||||
/// # Example
|
||||
/// ```
|
||||
/// # use reth_primitives::{Address, U256, hex, Bytes};
|
||||
/// # use alloy_primitives::Address;
|
||||
/// # use reth_primitives::{U256, hex, Bytes};
|
||||
/// # use reth_testing_utils::GenesisAllocator;
|
||||
/// # use std::str::FromStr;
|
||||
/// let mut allocator = GenesisAllocator::default();
|
||||
|
||||
Reference in New Issue
Block a user