chore: move ethereum payload builder to ethereum (#8490)

This commit is contained in:
Matthias Seitz
2024-06-07 14:03:52 +02:00
committed by GitHub
parent e4a08fbbf9
commit 007b0ebd6d
3 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,7 @@ members = [
"crates/ethereum/engine-primitives/",
"crates/ethereum/evm",
"crates/ethereum/node",
"crates/ethereum/payload/",
"crates/etl/",
"crates/evm/",
"crates/evm/execution-errors",
@ -49,7 +50,6 @@ members = [
"crates/optimism/primitives/",
"crates/payload/basic/",
"crates/payload/builder/",
"crates/payload/ethereum/",
"crates/payload/primitives/",
"crates/payload/validator/",
"crates/primitives/",
@ -259,7 +259,7 @@ reth-eth-wire-types = { path = "crates/net/eth-wire-types" }
reth-ethereum-consensus = { path = "crates/ethereum/consensus" }
reth-ethereum-engine-primitives = { path = "crates/ethereum/engine-primitives" }
reth-ethereum-forks = { path = "crates/ethereum-forks" }
reth-ethereum-payload-builder = { path = "crates/payload/ethereum" }
reth-ethereum-payload-builder = { path = "crates/ethereum/payload" }
reth-etl = { path = "crates/etl" }
reth-evm = { path = "crates/evm" }
reth-evm-ethereum = { path = "crates/ethereum/evm" }