aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/hive_test.go
diff options
context:
space:
mode:
authorViktor TrĂ³n <viktor.tron@gmail.com>2019-01-10 10:36:19 +0800
committerGitHub <noreply@github.com>2019-01-10 10:36:19 +0800
commit6df3e4eeb0dda986aef3f71335151fa63c06f6d3 (patch)
treebefe88b3e0d044281037cd4fcaaab09d32338d6a /swarm/network/hive_test.go
parentd70c4faf20d5533e30eec5cbb9b5180eb837b78c (diff)
downloadgo-tangerine-6df3e4eeb0dda986aef3f71335151fa63c06f6d3.tar.gz
go-tangerine-6df3e4eeb0dda986aef3f71335151fa63c06f6d3.tar.zst
go-tangerine-6df3e4eeb0dda986aef3f71335151fa63c06f6d3.zip
swarm/network: remove isproxbin bool from kad.Each* iterfunc (#18239)
* swarm/network, swarm/pss: remove isproxbin bool from kad.Each* iterfunc * swarm/network: restore comment and unskip snapshot sync tests
Diffstat (limited to 'swarm/network/hive_test.go')
-rw-r--r--swarm/network/hive_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/swarm/network/hive_test.go b/swarm/network/hive_test.go
index 56adc5a8e..a29e73083 100644
--- a/swarm/network/hive_test.go
+++ b/swarm/network/hive_test.go
@@ -103,7 +103,7 @@ func TestHiveStatePersistance(t *testing.T) {
pp.Start(s1.Server)
i := 0
- pp.Kademlia.EachAddr(nil, 256, func(addr *BzzAddr, po int, nn bool) bool {
+ pp.Kademlia.EachAddr(nil, 256, func(addr *BzzAddr, po int) bool {
delete(peers, addr.String())
i++
return true