Don't override the neighbours.

This commit is contained in:
Milos Gajdos 2019-08-29 15:42:07 +01:00
parent 3d03fe4076
commit ffa6b551f4
No known key found for this signature in database
GPG Key ID: 8B31058CC55DFD4F

View File

@ -309,11 +309,11 @@ func (n *network) announce(client transport.Client) {
nodes := make([]*pbNet.Node, len(n.neighbours))
i := 0
for id, _ := range n.neighbours {
pbNode := &pbNet.Node{
nodes[i] = &pbNet.Node{
Id: id,
Address: n.neighbours[id].address,
}
nodes[i] = pbNode
i++
}
n.RUnlock()