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 cf7c44a commit aa250e2Copy full SHA for aa250e2
eth/sync.go
@@ -214,7 +214,7 @@ func (pm *ProtocolManager) fetcher() {
214
if announce := pending[hash]; announce != nil {
215
// Drop the block if it surely cannot fit
216
if pm.chainman.HasBlock(hash) || !pm.chainman.HasBlock(block.ParentHash()) {
217
- delete(pending, hash)
+ // delete(pending, hash) // if we drop, it will re-fetch it, wait for timeout?
218
continue
219
}
220
// Otherwise accumulate for import
0 commit comments