mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
refactor: finalize proofs mod move from reth-primitives to reth-primitives-traits (#13875)
This commit is contained in:
@ -270,7 +270,7 @@ mod tests {
|
||||
use super::*;
|
||||
use alloy_primitives::B256;
|
||||
use reth_chainspec::{ChainSpec, ChainSpecBuilder};
|
||||
use reth_primitives::proofs;
|
||||
use reth_primitives_traits::proofs;
|
||||
|
||||
fn header_with_gas_limit(gas_limit: u64) -> SealedHeader {
|
||||
let header = reth_primitives::Header { gas_limit, ..Default::default() };
|
||||
|
||||
@ -31,11 +31,13 @@ use reth_payload_builder::{EthBuiltPayload, EthPayloadBuilderAttributes};
|
||||
use reth_payload_builder_primitives::PayloadBuilderError;
|
||||
use reth_payload_primitives::PayloadBuilderAttributes;
|
||||
use reth_primitives::{
|
||||
proofs::{self},
|
||||
Block, BlockBody, EthereumHardforks, InvalidTransactionError, Receipt, RecoveredBlock,
|
||||
TransactionSigned,
|
||||
};
|
||||
use reth_primitives_traits::{Block as _, SignedTransaction};
|
||||
use reth_primitives_traits::{
|
||||
proofs::{self},
|
||||
Block as _, SignedTransaction,
|
||||
};
|
||||
use reth_revm::database::StateProviderDatabase;
|
||||
use reth_storage_api::StateProviderFactory;
|
||||
use reth_transaction_pool::{
|
||||
|
||||
Reference in New Issue
Block a user