actually should be this way

This commit is contained in:
Nikolay Volf 2016-02-06 23:03:26 +03:00
parent 9727f27854
commit 391ef7e664

View File

@ -1150,11 +1150,11 @@ impl ChainSync {
self.check_resume(io);
if self.state == SyncState::Idle {
let peers = self.propagade_new_hashes(io);
trace!(target: "sync", "Sent new hashes to peers: {:?}", peers);
let peers = self.propagade_blocks(io);
trace!(target: "sync", "Sent latest block to peers: {:?}", peers);
let peers = self.propagade_new_hashes(io);
trace!(target: "sync", "Sent new hashes to peers: {:?}", peers);
}
}
}