simplify parity machine (#10469)

* simplify ethcore machine by removing redundant traits

* further ethereum machine simplifications

* removed obsolete todo
This commit is contained in:
Marek Kotewicz
2019-03-13 11:36:13 +01:00
committed by GitHub
parent 595dac6c3f
commit a16bad4175
18 changed files with 109 additions and 224 deletions

View File

@@ -0,0 +1,7 @@
//! Generalization of a state machine for a consensus engine.
mod impls;
mod traits;
pub use self::impls::*;
pub use self::traits::*;