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

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