Merge pull request #711 from milosgajdos83/node-neighbours
Don't override the neighbours.
This commit is contained in:
		| @@ -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() | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user