mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 01:28:21 -05:00
* wip executor * wip * Cleanup added some checks and structure to executor * adding additional block/header checks * add basefee calculation and check * some cleanup * Sanity check test * Test for sanity check * move verification to consensus crate * cleanup * Better Error handling
27 lines
605 B
TOML
27 lines
605 B
TOML
[workspace]
|
|
members = [
|
|
"bin/reth",
|
|
"crate-template",
|
|
"crates/common/rlp",
|
|
"crates/common/rlp-derive",
|
|
"crates/consensus",
|
|
"crates/db",
|
|
"crates/executor",
|
|
"crates/interfaces",
|
|
"crates/net/p2p",
|
|
"crates/net/ecies",
|
|
"crates/net/eth-wire",
|
|
"crates/net/discv4",
|
|
"crates/net/rpc",
|
|
"crates/net/rpc-api",
|
|
"crates/net/rpc-types",
|
|
"crates/net/headers-downloaders",
|
|
"crates/primitives",
|
|
"crates/stages",
|
|
"crates/transaction-pool",
|
|
"crates/db",
|
|
"crates/libmdbx-rs",
|
|
"crates/libmdbx-rs/mdbx-sys"
|
|
]
|
|
default-members = ["bin/reth"]
|