primitives: rm more alloy_primitives reexports (#11325)

This commit is contained in:
Thomas Coratger
2024-09-30 03:06:47 +02:00
committed by GitHub
parent ea1d04aa75
commit e21d75f9aa
53 changed files with 114 additions and 136 deletions

View File

@ -15,6 +15,8 @@ reth-payload-builder.workspace = true
reth-node-ethereum.workspace = true
reth-ethereum-payload-builder.workspace = true
alloy-primitives.workspace = true
tracing.workspace = true
futures-util.workspace = true
eyre.workspace = true

View File

@ -1,4 +1,5 @@
use crate::job::EmptyBlockPayloadJob;
use alloy_primitives::Bytes;
use reth::{
providers::{BlockReaderIdExt, BlockSource, StateProviderFactory},
tasks::TaskSpawner,
@ -7,7 +8,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, Bytes};
use reth_primitives::BlockNumberOrTag;
use std::sync::Arc;
/// The generator type that creates new jobs that builds empty blocks.