aboutsummaryrefslogtreecommitdiffstats
path: root/eth/downloader/queue.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-05-11 19:26:20 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-05-11 19:26:20 +0800
commit685862d2ce32294aacb2455bf189ec8e5c4efce3 (patch)
tree4ac31deffa46d5dff3a704b0594059e8757abca7 /eth/downloader/queue.go
parent00280e62e3c422b2824a0280015b7b78578ab16d (diff)
downloaddexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.tar
dexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.tar.gz
dexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.tar.bz2
dexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.tar.lz
dexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.tar.xz
dexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.tar.zst
dexon-685862d2ce32294aacb2455bf189ec8e5c4efce3.zip
eth/downloader: fix #910, thread safe peers & polishes
Diffstat (limited to 'eth/downloader/queue.go')
-rw-r--r--eth/downloader/queue.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go
index 515440bca..40749698c 100644
--- a/eth/downloader/queue.go
+++ b/eth/downloader/queue.go
@@ -1,3 +1,6 @@
+// Contains the block download scheduler to collect download tasks and schedule
+// them in an ordered, and throttled way.
+
package downloader
import (
@@ -8,6 +11,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
+ "github.com/ethereum/go-ethereum/logger"
+ "github.com/ethereum/go-ethereum/logger/glog"
"gopkg.in/karalabe/cookiejar.v2/collections/prque"
)
@@ -126,6 +131,10 @@ func (q *queue) Insert(hashes []common.Hash) {
for i, hash := range hashes {
index := q.hashCounter + i
+ if old, ok := q.hashPool[hash]; ok {
+ glog.V(logger.Warn).Infof("Hash %x already scheduled at index %v", hash, old)
+ continue
+ }
q.hashPool[hash] = index
q.hashQueue.Push(hash, float32(index)) // Highest gets schedules first
}