aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/simulations/overlay_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'swarm/network/simulations/overlay_test.go')
-rw-r--r--swarm/network/simulations/overlay_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/swarm/network/simulations/overlay_test.go b/swarm/network/simulations/overlay_test.go
index 6ccdb5ce2..41ed5ed26 100644
--- a/swarm/network/simulations/overlay_test.go
+++ b/swarm/network/simulations/overlay_test.go
@@ -32,7 +32,7 @@ import (
)
var (
- nodeCount = 16
+ nodeCount = 10
)
//This test is used to test the overlay simulation.
@@ -179,7 +179,7 @@ func watchSimEvents(net *simulations.Network, ctx context.Context, trigger chan
case ev := <-events:
//only catch node up events
if ev.Type == simulations.EventTypeNode {
- if ev.Node.Up {
+ if ev.Node.Up() {
log.Debug("got node up event", "event", ev, "node", ev.Node.Config.ID)
select {
case trigger <- ev.Node.Config.ID: