get rid of the function

This commit is contained in:
Nikolay Volf 2016-03-17 15:09:08 +01:00 committed by arkpar
parent 7acdc80b27
commit 7371beb26c
1 changed files with 1 additions and 8 deletions

View File

@ -625,13 +625,6 @@ impl ChainSync {
self.state = SyncState::Waiting;
}
fn can_sync(&self) -> bool {
match self.state {
SyncState::Idle | SyncState::NotSynced => true,
_ => false
}
}
/// Find something to do for a peer. Called for a new peer or when a peer is done with it's task.
fn sync_peer(&mut self, io: &mut SyncIo, peer_id: PeerId, force: bool) {
let (peer_latest, peer_difficulty) = {
@ -651,7 +644,7 @@ impl ChainSync {
if force || peer_difficulty > syncing_difficulty {
// start sync
self.syncing_difficulty = peer_difficulty;
if self.can_sync() {
if self.state == SyncState::Idle || self.state == SyncState::NotSynced {
self.state = SyncState::Blocks;
}
trace!(target: "sync", "Starting sync with better chain");