mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-29 17:18:08 -05:00
Co-authored-by: Bjerg <onbjerg@users.noreply.github.com> Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
19 lines
445 B
Rust
19 lines
445 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;
|
|
pub mod eth_dao_fork;
|
|
|
|
/// Execution result types
|
|
pub mod execution_result;
|
|
/// Executor
|
|
pub mod executor;
|
|
/// Wrapper around revm database and types
|
|
pub mod revm_wrap;
|