add test, start tendermint

This commit is contained in:
keorn
2016-08-23 12:58:40 +02:00
parent 3515a72fa0
commit 3aa862c9c2
8 changed files with 370 additions and 33 deletions

View File

@@ -18,7 +18,7 @@
use spec::Ethash;
use spec::BasicAuthority;
use spec::BFT;
use spec::Tendermint;
/// Engine deserialization.
#[derive(Debug, PartialEq, Deserialize)]
@@ -32,7 +32,7 @@ pub enum Engine {
/// BasicAuthority engine.
BasicAuthority(BasicAuthority),
/// Byzantine Fault Tolerant engine.
BFT(BFT)
Tendermint(Tendermint)
}
#[cfg(test)]