les: fix block announcements (#19322)

This commit is contained in:
Felföldi Zsolt 2019-03-25 08:17:55 +01:00 committed by Péter Szilágyi
parent 2f5b6cb442
commit e852505ace

View File

@ -280,8 +280,8 @@ func (pm *ProtocolManager) blockLoop() {
)
for _, p := range peers {
p := p
switch p.announceType {
case announceTypeSimple:
p.queueSend(func() { p.SendAnnounce(announce) })
case announceTypeSigned:
@ -290,7 +290,6 @@ func (pm *ProtocolManager) blockLoop() {
signedAnnounce.sign(pm.server.privateKey)
signed = true
}
p.queueSend(func() { p.SendAnnounce(signedAnnounce) })
}
}