openethereum/crates/ethcore/src/machine/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
124 B
Rust
Raw Normal View History

//! Generalization of a state machine for a consensus engine.
mod impls;
mod traits;
pub use self::{impls::*, traits::*};