diff options
author | Viktor TrĂ³n <viktor.tron@gmail.com> | 2019-01-10 10:36:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 10:36:19 +0800 |
commit | 6df3e4eeb0dda986aef3f71335151fa63c06f6d3 (patch) | |
tree | befe88b3e0d044281037cd4fcaaab09d32338d6a /swarm/network/hive_test.go | |
parent | d70c4faf20d5533e30eec5cbb9b5180eb837b78c (diff) | |
download | dexon-6df3e4eeb0dda986aef3f71335151fa63c06f6d3.tar.gz dexon-6df3e4eeb0dda986aef3f71335151fa63c06f6d3.tar.zst dexon-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.go | 2 |
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 |