chore: rm beacon consensus deps (#13716)

This commit is contained in:
Matthias Seitz
2025-01-07 23:31:04 +01:00
committed by GitHub
parent ccaf9da732
commit fb6902880c
16 changed files with 17 additions and 25 deletions

View File

@ -16,6 +16,7 @@ reth-payload-builder.workspace = true
reth-ethereum-engine-primitives.workspace = true
reth-basic-payload-builder.workspace = true
reth-ethereum-payload-builder.workspace = true
reth-ethereum-consensus.workspace = true
reth-node-builder.workspace = true
reth-tracing.workspace = true
reth-provider.workspace = true
@ -24,7 +25,6 @@ reth-network.workspace = true
reth-evm.workspace = true
reth-evm-ethereum.workspace = true
reth-consensus.workspace = true
reth-beacon-consensus.workspace = true
reth-rpc.workspace = true
reth-node-api.workspace = true
reth-chainspec.workspace = true

View File

@ -1,9 +1,11 @@
//! Ethereum Node types config.
pub use crate::payload::EthereumPayloadBuilder;
use crate::{EthEngineTypes, EthEvmConfig};
use reth_beacon_consensus::EthBeaconConsensus;
use reth_chainspec::ChainSpec;
use reth_consensus::{ConsensusError, FullConsensus};
use reth_ethereum_consensus::EthBeaconConsensus;
pub use reth_ethereum_engine_primitives::EthereumEngineValidator;
use reth_ethereum_engine_primitives::{
EthBuiltPayload, EthPayloadAttributes, EthPayloadBuilderAttributes,
};
@ -30,9 +32,6 @@ use reth_transaction_pool::{
use reth_trie_db::MerklePatriciaTrie;
use std::sync::Arc;
pub use crate::payload::EthereumPayloadBuilder;
pub use reth_ethereum_engine_primitives::EthereumEngineValidator;
/// Type configuration for a regular Ethereum node.
#[derive(Debug, Default, Clone, Copy)]
#[non_exhaustive]