Skip to content
This repository has been archived by the owner on Aug 2, 2021. It is now read-only.

Commit

Permalink
swarm/network/simulation:commented out unreachable code-avoid vet err…
Browse files Browse the repository at this point in the history
…ors (#18263)
  • Loading branch information
jpeletier authored and zelig committed Dec 18, 2018
1 parent 90ea542 commit de4265f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions swarm/network/simulation/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,8 @@ package simulation_test

import (
"context"
"fmt"
"sync"
"time"

"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/node"
"github.com/ethereum/go-ethereum/p2p/simulations/adapters"
"github.com/ethereum/go-ethereum/swarm/network"
"github.com/ethereum/go-ethereum/swarm/network/simulation"
)

Expand All @@ -35,7 +29,8 @@ import (
func ExampleSimulation_WaitTillHealthy() {

log.Error("temporarily disabled as simulations.WaitTillHealthy cannot be trusted")
return

/* Commented out to avoid go vet errors/warnings
sim := simulation.New(map[string]simulation.ServiceFunc{
"bzz": func(ctx *adapters.ServiceContext, b *sync.Map) (node.Service, func(), error) {
Expand Down Expand Up @@ -75,6 +70,8 @@ func ExampleSimulation_WaitTillHealthy() {
}
// continue with the test
*/
}

// Watch all peer events in the simulation network, buy receiving from a channel.
Expand Down

0 comments on commit de4265f

Please sign in to comment.