Skip to content

Commit 76ab0b5

Browse files
committed
eth/downloader: fix issue #277
1 parent b3e0f70 commit 76ab0b5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

eth/downloader/queue.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,6 @@ func (q *queue) reserveHeaders(p *peerConnection, count int, taskPool map[common
510510
index := int(header.Number.Int64() - int64(q.resultOffset))
511511
if index >= len(q.resultCache) || index < 0 {
512512
log.Error("index allocation went beyond available resultCache space", "index", index, "len.resultCache", len(q.resultCache), "blockNum", header.Number.Int64(), "resultOffset", q.resultOffset)
513-
common.Report("index allocation went beyond available resultCache space")
514513
return nil, false, errInvalidChain
515514
}
516515
if q.resultCache[index] == nil {

0 commit comments

Comments
 (0)