diff options
author | Sonic <sonic@dexon.org> | 2019-03-20 14:48:21 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-13 18:11:44 +0800 |
commit | 1eacbcbe3c890238da49fcfdddc151a5b7748265 (patch) | |
tree | 487092e55cecceaf8b23b1df17d330c26b574ae1 /dex/sync.go | |
parent | a7d069aae1a4bc237a9a3a0f10efeba77c473bcb (diff) | |
download | go-tangerine-1eacbcbe3c890238da49fcfdddc151a5b7748265.tar.gz go-tangerine-1eacbcbe3c890238da49fcfdddc151a5b7748265.tar.zst go-tangerine-1eacbcbe3c890238da49fcfdddc151a5b7748265.zip |
dex: ignore acceptableDist when force synchronise (#285)
Diffstat (limited to 'dex/sync.go')
-rw-r--r-- | dex/sync.go | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/dex/sync.go b/dex/sync.go index 927c04bc3..93bed87c4 100644 --- a/dex/sync.go +++ b/dex/sync.go @@ -245,11 +245,11 @@ func (pm *ProtocolManager) syncer() { if pm.peers.Len() < minDesiredPeerCount { break } - go pm.synchronise(pm.peers.BestPeer()) + go pm.synchronise(pm.peers.BestPeer(), false) case <-forceSync.C: // Force a sync even if not enough peers are present - go pm.synchronise(pm.peers.BestPeer()) + go pm.synchronise(pm.peers.BestPeer(), false) case <-pm.noMorePeers: return @@ -258,7 +258,7 @@ func (pm *ProtocolManager) syncer() { } // synchronise tries to sync up our local block chain with a remote peer. -func (pm *ProtocolManager) synchronise(peer *peer) { +func (pm *ProtocolManager) synchronise(peer *peer, force bool) { // Short circuit if no peers are available if peer == nil { return @@ -271,9 +271,15 @@ func (pm *ProtocolManager) synchronise(peer *peer) { // If we are behind the peer, but not more than acceptable distance, don't // trigger a sync. Fetcher is able to cover this. - if pNumber <= number+acceptableDist { + var dist uint64 + if !force { + dist = acceptableDist + } + + if pNumber <= number+dist { return } + // Otherwise try to sync with the downloader mode := downloader.FullSync if atomic.LoadUint32(&pm.fastSync) == 1 { |