fixed ethsync tests

This commit is contained in:
debris 2016-02-15 17:47:01 +01:00
parent 552fe1fb4b
commit a9e3875230

View File

@ -111,6 +111,10 @@ impl BlockChainClient for TestBlockChainClient {
unimplemented!();
}
fn blocks_with_bloom(&self, _bloom: &H2048, _from_block: BlockId, _to_block: BlockId) -> Option<Vec<BlockNumber>> {
unimplemented!();
}
fn block_header(&self, id: BlockId) -> Option<Bytes> {
self.block_hash(id).and_then(|hash| self.blocks.read().unwrap().get(&hash).map(|r| Rlp::new(r).at(0).as_raw().to_vec()))
}