gossip
gossip copied to clipboard
Go implementation of the Gossip protocol
- Modify the StoreMap from map[string]interface{} to map[string][]byte - A node only decodes those entries in the store map whose keys it knows - Keys are registered with a gossip...
In `README.md` we see an example: ``` // Create a gossiper g := NewGossiper(":", "", "") // Add peer nodes with whom you want to gossip g.AddNode(":") ... // update...
Remove the vendor directory and update travis to download on each run
Fix 'go vet' reported problems Include 'go vet' to be run with builds