primitives: rm more alloy block reexports (#12308)

This commit is contained in:
Thomas Coratger
2024-11-05 12:37:56 +01:00
committed by GitHub
parent 556995fc5d
commit 441ddbf085
23 changed files with 38 additions and 41 deletions

View File

@ -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

View File

@ -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},

View File

@ -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

View File

@ -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.