[release/1.3.4] eth/downloader: fix header download limiting

Fixes #2201
(cherry picked from commit 26e72b2ccd)
This commit is contained in:
Felix Lange 2016-02-26 15:24:51 +01:00 committed by Jeffrey Wilcke
parent 7f83e68b13
commit a4f4846fff
1 changed files with 1 additions and 1 deletions

View File

@ -1216,7 +1216,7 @@ func (d *Downloader) fetchHeaders(p *peer, td *big.Int, from uint64) error {
}
}
// Notify the content fetchers of new headers, but stop if queue is full
cont := d.queue.PendingBlocks() < maxQueuedHeaders || d.queue.PendingReceipts() < maxQueuedHeaders
cont := d.queue.PendingBlocks() < maxQueuedHeaders && d.queue.PendingReceipts() < maxQueuedHeaders
for _, ch := range []chan bool{d.bodyWakeCh, d.receiptWakeCh, d.stateWakeCh} {
if cont {
// We still have headers to fetch, send continuation wake signal (potential)