Don't share the snapshot while downloading old blocks

This commit is contained in:
arkpar 2016-11-30 23:33:17 +01:00
parent 4f4bfb2239
commit b7dc60ace5
1 changed files with 4 additions and 1 deletions

View File

@ -1426,7 +1426,10 @@ impl ChainSync {
packet.append(&chain.best_block_hash);
packet.append(&chain.genesis_hash);
if warp_protocol {
let manifest = io.snapshot_service().manifest();
let manifest = match self.old_blocks.is_some() {
true => None,
false => io.snapshot_service().manifest(),
};
let block_number = manifest.as_ref().map_or(0, |m| m.block_number);
let manifest_hash = manifest.map_or(H256::new(), |m| m.into_rlp().sha3());
packet.append(&manifest_hash);