chore(payload): Move ExecutionPayloadValidator into reth-ethereum-payload-builder (#14751)

This commit is contained in:
Emilia Hane
2025-02-28 14:05:14 +01:00
committed by GitHub
parent 732e3debe2
commit 6ce459aec7
24 changed files with 241 additions and 202 deletions

View File

@@ -1,11 +1,10 @@
//! Ethereum Node types config.
pub use crate::payload::EthereumPayloadBuilder;
pub use crate::{payload::EthereumPayloadBuilder, EthereumEngineValidator};
use crate::{EthEngineTypes, EthEvmConfig};
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,
};