diff options
author | Felix Lange <fjl@twurst.com> | 2015-02-12 18:59:52 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-02-13 18:39:31 +0800 |
commit | 82f0bd9009d8d577c86e800e9673a1972117113d (patch) | |
tree | 9ff7257fa03b2b17650c9453d121a27937e36af9 /p2p/discover/table.go | |
parent | d0a2e655c9599f462bb20bd49bc69b8e1e330a21 (diff) | |
download | dexon-82f0bd9009d8d577c86e800e9673a1972117113d.tar.gz dexon-82f0bd9009d8d577c86e800e9673a1972117113d.tar.zst dexon-82f0bd9009d8d577c86e800e9673a1972117113d.zip |
p2p/discover: code review fixes
Diffstat (limited to 'p2p/discover/table.go')
-rw-r--r-- | p2p/discover/table.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index 1ff2c90d9..e3bec9328 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -14,9 +14,9 @@ import ( ) const ( - alpha = 3 // Kademlia concurrency factor - bucketSize = 16 // Kademlia bucket size - nBuckets = len(NodeID{})*8 + 1 // Number of buckets + alpha = 3 // Kademlia concurrency factor + bucketSize = 16 // Kademlia bucket size + nBuckets = nodeIDBits + 1 // Number of buckets ) type Table struct { @@ -100,7 +100,7 @@ func (tab *Table) Lookup(target NodeID) []*Node { tab.mutex.Unlock() for { - // ask the closest nodes that we haven't asked yet + // ask the alpha closest nodes that we haven't asked yet for i := 0; i < len(result.entries) && pendingQueries < alpha; i++ { n := result.entries[i] if !asked[n.ID] { |