chore: rm reth-interfaces from auto-seal (#8434)

This commit is contained in:
Matthias Seitz
2024-05-28 17:56:48 +02:00
committed by GitHub
parent 329634256a
commit a5c3c63fe4
4 changed files with 6 additions and 4 deletions

View File

@ -15,7 +15,8 @@ workspace = true
# reth
reth-beacon-consensus.workspace = true
reth-primitives.workspace = true
reth-interfaces.workspace = true
reth-execution-errors.workspace = true
reth-network-p2p.workspace = true
reth-provider.workspace = true
reth-stages-api.workspace = true
reth-revm.workspace = true

View File

@ -1,7 +1,7 @@
//! This includes download client implementations for auto sealing miners.
use crate::Storage;
use reth_interfaces::p2p::{
use reth_network_p2p::{
bodies::client::{BodiesClient, BodiesFut},
download::DownloadClient,
headers::client::{HeadersClient, HeadersFut, HeadersRequest},

View File

@ -18,7 +18,7 @@
use reth_beacon_consensus::BeaconEngineMessage;
use reth_consensus::{Consensus, ConsensusError, PostExecutionInput};
use reth_engine_primitives::EngineTypes;
use reth_interfaces::executor::{BlockExecutionError, BlockValidationError};
use reth_execution_errors::{BlockExecutionError, BlockValidationError};
use reth_primitives::{
constants::{EMPTY_TRANSACTIONS, ETHEREUM_BLOCK_GAS_LIMIT},
eip4844::calculate_excess_blob_gas,