mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-29 17:18:08 -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
16 lines
393 B
Rust
16 lines
393 B
Rust
#![warn(missing_docs, unreachable_pub)]
|
|
#![deny(unused_must_use, rust_2018_idioms)]
|
|
#![doc(test(
|
|
no_crate_inject,
|
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
|
))]
|
|
|
|
//! Reth executor executes transaction in block of data.
|
|
|
|
pub mod config;
|
|
/// Executor
|
|
pub mod executor;
|
|
/// Wrapper around revm database and types
|
|
pub mod revm_wrap;
|
|
pub use config::Config;
|