diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-05-25 21:35:32 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-05-27 05:30:41 +0800 |
commit | 612f01400f59b0b4d0db9f9ceaa38f45805ea89e (patch) | |
tree | 3a48f803dcf36f67adbeec5bd9bf92902a34bf06 /p2p/discover | |
parent | 3630432dfb486a5bf8f853900be1fe32fefae182 (diff) | |
download | go-tangerine-612f01400f59b0b4d0db9f9ceaa38f45805ea89e.tar.gz go-tangerine-612f01400f59b0b4d0db9f9ceaa38f45805ea89e.tar.zst go-tangerine-612f01400f59b0b4d0db9f9ceaa38f45805ea89e.zip |
p2p/discover: bond with seed nodes too (runs only if findnode failed)
Diffstat (limited to 'p2p/discover')
-rw-r--r-- | p2p/discover/table.go | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/p2p/discover/table.go b/p2p/discover/table.go index 7bff0d1d0..4b7ddb775 100644 --- a/p2p/discover/table.go +++ b/p2p/discover/table.go @@ -278,14 +278,11 @@ func (tab *Table) refresh() { for _, seed := range seeds { glog.V(logger.Debug).Infoln("Seeding network with", seed) } - peers := append(tab.nursery, seeds...) - - // Bootstrap the table with a self lookup - if len(peers) > 0 { - tab.mutex.Lock() - tab.add(peers) - tab.mutex.Unlock() + nodes := append(tab.nursery, seeds...) + // Bond with all the seed nodes (will pingpong only if failed recently) + bonded := tab.bondall(nodes) + if len(bonded) > 0 { tab.Lookup(tab.self.ID) } // TODO: the Kademlia paper says that we're supposed to perform |