mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-07 21:45:24 -05:00
14 lines
278 B
Rust
14 lines
278 B
Rust
//! Models used in storage module
|
|
|
|
/// Accounts
|
|
pub mod accounts;
|
|
pub use accounts::AccountBeforeTx;
|
|
|
|
/// Blocks
|
|
pub mod blocks;
|
|
pub use blocks::{StoredBlockBodyIndices, StoredBlockWithdrawals};
|
|
|
|
/// Client Version
|
|
pub mod client_version;
|
|
pub use client_version::ClientVersion;
|