Merge branch 'master' into auth-bft

This commit is contained in:
keorn
2016-12-10 11:01:23 +01:00
160 changed files with 3773 additions and 1341 deletions

View File

@@ -317,6 +317,10 @@ impl<C> TestNet<C> where C: FlushingBlockChainClient {
let mut queue = peer.queue.write();
peer.sync.write().chain_new_blocks(&mut TestIo::new(&peer.chain, &peer.snapshot_service, &mut queue, None), &[], &[], &[], &[], &[], &[]);
}
fn start(&self) {}
fn stop(&self) {}
}
impl ChainNotify for TestPeer<EthcoreClient> {
@@ -351,4 +355,3 @@ impl ChainNotify for TestPeer<EthcoreClient> {
self.sync.write().propagate_consensus_packet(&mut io, message.clone());
}
}

View File

@@ -18,4 +18,6 @@ pub mod helpers;
pub mod snapshot;
mod chain;
mod consensus;
#[cfg(feature = "ipc")]
mod rpc;