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 (#11250)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -1,14 +1,16 @@
|
||||
//! Dummy blocks and data for tests
|
||||
use crate::{DatabaseProviderRW, ExecutionOutcome};
|
||||
use alloy_consensus::TxLegacy;
|
||||
use alloy_primitives::{map::HashMap, Address, BlockNumber, Log, Parity, Sealable, TxKind};
|
||||
use alloy_primitives::{
|
||||
hex_literal::hex, map::HashMap, Address, BlockNumber, Log, Parity, Sealable, TxKind,
|
||||
};
|
||||
use once_cell::sync::Lazy;
|
||||
use reth_db::tables;
|
||||
use reth_db_api::{database::Database, models::StoredBlockBodyIndices};
|
||||
use reth_primitives::{
|
||||
alloy_primitives, b256, hex_literal::hex, Account, BlockBody, Bytes, Header, Receipt,
|
||||
SealedBlock, SealedBlockWithSenders, SealedHeader, Signature, Transaction, TransactionSigned,
|
||||
TxType, Withdrawal, Withdrawals, B256, U256,
|
||||
alloy_primitives, b256, Account, BlockBody, Bytes, Header, Receipt, SealedBlock,
|
||||
SealedBlockWithSenders, SealedHeader, Signature, Transaction, TransactionSigned, TxType,
|
||||
Withdrawal, Withdrawals, B256, U256,
|
||||
};
|
||||
use reth_trie::root::{state_root_unhashed, storage_root_unhashed};
|
||||
use revm::{db::BundleState, primitives::AccountInfo};
|
||||
|
||||
Reference in New Issue
Block a user