mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
primitives: rm more alloy block reexports (#12308)
This commit is contained in:
@ -12,3 +12,4 @@ alloy-rpc-types.workspace = true
|
||||
clap = { workspace = true, features = ["derive"] }
|
||||
futures-util.workspace = true
|
||||
alloy-primitives.workspace = true
|
||||
alloy-eips.workspace = true
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
|
||||
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
|
||||
|
||||
use alloy_eips::BlockNumberOrTag;
|
||||
use alloy_primitives::Address;
|
||||
use alloy_rpc_types::state::EvmOverrides;
|
||||
use clap::Parser;
|
||||
@ -18,7 +19,6 @@ use reth::{
|
||||
builder::NodeHandle,
|
||||
chainspec::EthereumChainSpecParser,
|
||||
cli::Cli,
|
||||
primitives::BlockNumberOrTag,
|
||||
revm::{
|
||||
inspector_handle_register,
|
||||
interpreter::{Interpreter, OpCode},
|
||||
|
||||
@ -16,6 +16,7 @@ reth-node-ethereum.workspace = true
|
||||
reth-ethereum-payload-builder.workspace = true
|
||||
|
||||
alloy-primitives.workspace = true
|
||||
alloy-eips.workspace = true
|
||||
|
||||
tracing.workspace = true
|
||||
futures-util.workspace = true
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
use crate::job::EmptyBlockPayloadJob;
|
||||
use alloy_eips::BlockNumberOrTag;
|
||||
use alloy_primitives::Bytes;
|
||||
use reth::{
|
||||
providers::{BlockReaderIdExt, BlockSource, StateProviderFactory},
|
||||
@ -8,7 +9,7 @@ use reth::{
|
||||
use reth_basic_payload_builder::{BasicPayloadJobGeneratorConfig, PayloadBuilder, PayloadConfig};
|
||||
use reth_node_api::PayloadBuilderAttributes;
|
||||
use reth_payload_builder::{PayloadBuilderError, PayloadJobGenerator};
|
||||
use reth_primitives::{BlockNumberOrTag, SealedHeader};
|
||||
use reth_primitives::SealedHeader;
|
||||
use std::sync::Arc;
|
||||
|
||||
/// The generator type that creates new jobs that builds empty blocks.
|
||||
|
||||
Reference in New Issue
Block a user