aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-11-18 19:29:17 +0800
committerFelix Lange <fjl@twurst.com>2015-11-19 21:18:34 +0800
commitdb52a6a0ffced52477eec45ada8f3233415c3d18 (patch)
tree29972dfba70f070ebbda1b82dfb88a9595fa25b3 /eth
parent900da3d800ad299c22ecb5d14f477600931d70b6 (diff)
downloadgo-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.tar
go-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.tar.gz
go-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.tar.bz2
go-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.tar.lz
go-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.tar.xz
go-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.tar.zst
go-tangerine-db52a6a0ffced52477eec45ada8f3233415c3d18.zip
eth: remove workaround for asynchronous processing in the downloader
Diffstat (limited to 'eth')
-rw-r--r--eth/sync.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/eth/sync.go b/eth/sync.go
index bbf2abc04..dd8aef8e4 100644
--- a/eth/sync.go
+++ b/eth/sync.go
@@ -175,10 +175,6 @@ func (pm *ProtocolManager) synchronise(peer *peer) {
}
// If fast sync was enabled, and we synced up, disable it
if pm.fastSync {
- // Wait until all pending imports finish processing
- for pm.downloader.Synchronising() {
- time.Sleep(100 * time.Millisecond)
- }
// Disable fast sync if we indeed have something in our chain
if pm.blockchain.CurrentBlock().NumberU64() > 0 {
glog.V(logger.Info).Infof("fast sync complete, auto disabling")