diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-19 02:25:55 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-19 02:25:55 +0800 |
commit | 6830ddb659270b59b5a310fdc0e581b09fae5326 (patch) | |
tree | 00d2c3a01e7af66741239ba806d824f2bba9de62 /eth/downloader/queue.go | |
parent | 7c5d50f627b223a8b0217f6ca684b4c7d1d877ef (diff) | |
download | go-tangerine-6830ddb659270b59b5a310fdc0e581b09fae5326.tar.gz go-tangerine-6830ddb659270b59b5a310fdc0e581b09fae5326.tar.zst go-tangerine-6830ddb659270b59b5a310fdc0e581b09fae5326.zip |
downloader: free up peers from work when the downloader resets
Diffstat (limited to 'eth/downloader/queue.go')
-rw-r--r-- | eth/downloader/queue.go | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go index 5745bf1f8..ce3aa9850 100644 --- a/eth/downloader/queue.go +++ b/eth/downloader/queue.go @@ -60,13 +60,18 @@ func (c *queue) get(p *peer, max int) *chunk { return false } - hashes.Add(v) - i++ + // Skip any hashes that have previously been requested from the peer + if !p.requested.Has(v) { + hashes.Add(v) + i++ + } return true }) - // remove hashes that have previously been fetched - hashes.Separate(p.requested) + // if no hashes can be requested return a nil chunk + if hashes.Size() == 0 { + return nil + } // remove the fetchable hashes from hash pool c.hashPool.Separate(hashes) |