* simplify ethcore machine by removing redundant traits * further ethereum machine simplifications * removed obsolete todo
8 lines
136 B
Rust
8 lines
136 B
Rust
//! Generalization of a state machine for a consensus engine.
|
|
|
|
mod impls;
|
|
mod traits;
|
|
|
|
pub use self::impls::*;
|
|
pub use self::traits::*;
|