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 a019191 commit 29d53b2Copy full SHA for 29d53b2
eth/fetcher/fetcher.go
@@ -323,7 +323,7 @@ func (f *Fetcher) loop() {
323
hash := block.Hash()
324
325
// Filter explicitly requested blocks from hash announcements
326
- if _, ok := f.fetching[hash]; ok {
+ if f.fetching[hash] != nil && f.queued[hash] == nil {
327
// Discard if already imported by other means
328
if f.getBlock(hash) == nil {
329
explicit = append(explicit, block)
0 commit comments