diff options
Diffstat (limited to 'dex/handler.go')
-rw-r--r-- | dex/handler.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/dex/handler.go b/dex/handler.go index a6a3627ec..276dd433c 100644 --- a/dex/handler.go +++ b/dex/handler.go @@ -823,13 +823,7 @@ func (pm *ProtocolManager) BroadcastMetas(metas []*NodeMeta) { } func (pm *ProtocolManager) BroadcastVote(vote *coreTypes.Vote) { - label := peerLabel{ - set: notaryset, - chainID: vote.Position.ChainID, - round: vote.Position.Round, - } - - for _, peer := range pm.peers.PeersWithoutVote(rlpHash(vote), label) { + for _, peer := range pm.peers.allPeers() { peer.AsyncSendVote(vote) } } |