mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-09 15:29:34 +00:00
12 lines
417 B
Rust
12 lines
417 B
Rust
//! Storage-free chain-state core shared by the LEZ sequencer and indexer:
|
|
//! the [`apply_block`] entry point plus [`BlockIngestError`], [`StallReason`],
|
|
//! [`Tip`], and [`AcceptOutcome`]. See `DESIGN.md` for the two-tier model.
|
|
|
|
pub mod apply;
|
|
pub mod ingest_error;
|
|
pub mod stall_reason;
|
|
|
|
pub use apply::{AcceptOutcome, Tip, apply_block};
|
|
pub use ingest_error::BlockIngestError;
|
|
pub use stall_reason::StallReason;
|