aboutsummaryrefslogtreecommitdiffstats
path: root/eth/sync.go
diff options
context:
space:
mode:
authorgary rong <garyrong0905@gmail.com>2018-03-09 17:51:30 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-03-09 17:51:30 +0800
commit77da203547b83c70d12552a86bb7beee52f6383e (patch)
tree66074b1a60b022333bc3872d0e0a31ec58bda624 /eth/sync.go
parent307846d046d66c04ec9750c2219f7c93b53cb2c9 (diff)
downloadgo-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.tar
go-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.tar.gz
go-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.tar.bz2
go-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.tar.lz
go-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.tar.xz
go-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.tar.zst
go-tangerine-77da203547b83c70d12552a86bb7beee52f6383e.zip
eth: update higest block we know during the sync if a higher was found (#16283)
* eth: update higest block we know during the sync if a higher was found * eth: avoid useless sync in fast sync
Diffstat (limited to 'eth/sync.go')
-rw-r--r--eth/sync.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/eth/sync.go b/eth/sync.go
index 2da1464bc..e49e40087 100644
--- a/eth/sync.go
+++ b/eth/sync.go
@@ -188,6 +188,14 @@ func (pm *ProtocolManager) synchronise(peer *peer) {
atomic.StoreUint32(&pm.fastSync, 1)
mode = downloader.FastSync
}
+
+ if mode == downloader.FastSync {
+ // Make sure the peer's total difficulty we are synchronizing is higher.
+ if pm.blockchain.GetTdByHash(pm.blockchain.CurrentFastBlock().Hash()).Cmp(pTd) >= 0 {
+ return
+ }
+ }
+
// Run the sync cycle, and disable fast sync if we've went past the pivot block
if err := pm.downloader.Synchronise(peer.id, pHead, pTd, mode); err != nil {
return