aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/simulations/overlay.go
diff options
context:
space:
mode:
Diffstat (limited to 'swarm/network/simulations/overlay.go')
-rw-r--r--swarm/network/simulations/overlay.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/swarm/network/simulations/overlay.go b/swarm/network/simulations/overlay.go
index caf7ff1f2..284ae6398 100644
--- a/swarm/network/simulations/overlay.go
+++ b/swarm/network/simulations/overlay.go
@@ -64,12 +64,12 @@ func init() {
type Simulation struct {
mtx sync.Mutex
- stores map[enode.ID]*state.InmemoryStore
+ stores map[enode.ID]state.Store
}
func NewSimulation() *Simulation {
return &Simulation{
- stores: make(map[enode.ID]*state.InmemoryStore),
+ stores: make(map[enode.ID]state.Store),
}
}