We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900da3d commit db52a6aCopy full SHA for db52a6a
eth/sync.go
@@ -175,10 +175,6 @@ func (pm *ProtocolManager) synchronise(peer *peer) {
175
}
176
// If fast sync was enabled, and we synced up, disable it
177
if pm.fastSync {
178
- // Wait until all pending imports finish processing
179
- for pm.downloader.Synchronising() {
180
- time.Sleep(100 * time.Millisecond)
181
- }
182
// Disable fast sync if we indeed have something in our chain
183
if pm.blockchain.CurrentBlock().NumberU64() > 0 {
184
glog.V(logger.Info).Infof("fast sync complete, auto disabling")
0 commit comments