Rename naive to gossip

This commit is contained in:
Ivan Danyliuk 2018-11-01 15:32:10 +01:00
parent 0f959c13fd
commit a86623ef94
No known key found for this signature in database
GPG Key ID: 97ED33CE024E1DBF
5 changed files with 12 additions and 12 deletions

View File

@ -20,19 +20,19 @@ Original intent of these simulators is to provide stats and resulting traces/log
### Simulators support
| Simulator | State | Description |
| Simulator | Description | State |
|---|---|---|
| **WhisperV6** | Done | Master branch if go-ethereum Whisper implementation |
| **Naive** | Done | Naive p2p propagation |
| PSS | TBD | Swarm's PSS messaging |
| **WhisperV6** | Master branch if go-ethereum Whisper implementation | Done |
| **Gossip** | Naive gossip p2p propagation | Done |
| PSS | Swarm's PSS messaging | TBD |
### Network environments support
| Node type | State | Description |
| Node type | Description | State |
|---|---|---|
| **In-Memory** | Done | Single node in-memory network |
| Exec | TBD | Single node native binary network with localhost connection |
| Docker | TBD | Docker-based network |
| **In-Memory** | Done | Single node in-memory network | Done |
| Exec | Single node native binary network with localhost connection | TBD |
| Docker | Docker-based network | TBD |
## Usage

View File

@ -5,7 +5,7 @@ This simulator server implements an API for running message propagation through
Currently supported:
- whisperv6
- naive p2p propagation
- naive gossip propagation
Server expects a network topology as an input, and returns propagation log data.

View File

@ -3,7 +3,7 @@
This simulator implements command for running different simulation implementations. Currently supported:
- whisperv6
- naive p2p propagation
- naive gossip propagation
# Installation

View File

@ -1,4 +1,4 @@
package naivep2p
package gossip
import (
"github.com/divan/graphx/graph"

View File

@ -1,4 +1,4 @@
package naivep2p
package gossip
import (
"crypto/rand"