From 9e54c7d2735b44f34f76e52c5088c3d70bdb41d1 Mon Sep 17 00:00:00 2001 From: Matthias Radestock Date: Sat, 26 Dec 2015 17:23:32 +0000 Subject: [PATCH] only generate broadcasts about ourself We no longer need this workaround for the lack of gossip ordering constraints. --- mesh/local_peer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh/local_peer.go b/mesh/local_peer.go index 7592c81b89..157ed81c21 100644 --- a/mesh/local_peer.go +++ b/mesh/local_peer.go @@ -160,7 +160,7 @@ func (peer *LocalPeer) handleAddConnection(conn Connection) error { } peer.router.Routes.Recalculate() - peer.broadcastPeerUpdate(conn.Remote()) + peer.broadcastPeerUpdate() return nil }