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

@@ -49,7 +49,6 @@ reth-tracing.workspace = true
reth-tasks.workspace = true
reth-payload-builder.workspace = true
reth-payload-primitives.workspace = true
reth-payload-validator.workspace = true
reth-basic-payload-builder.workspace = true
reth-static-file.workspace = true
reth-trie = { workspace = true, features = ["metrics"] }

View File

@@ -41,9 +41,9 @@ pub mod utils {
/// Re-exported payload related types
pub mod payload {
pub use reth_ethereum_payload_builder::EthereumExecutionPayloadValidator;
pub use reth_payload_builder::*;
pub use reth_payload_primitives::*;
pub use reth_payload_validator::ExecutionPayloadValidator;
}
/// Re-exported from `reth_node_api`.