openethereum/src/sync/tests.rs

14 lines
192 B
Rust
Raw Normal View History

2015-12-25 14:55:55 +01:00
use std::collections::HashMap;
use util::bytes::Bytes;
use util::hash::H256;
struct TestBlockChainClient {
blocks: Vec<Bytes>,
hashes: HashMap<H256, usize>,
}
#[test]
fn full_sync() {
}