mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 00:27:26 +00:00
les: fix block announcements (#19322)
This commit is contained in:
parent
2f5b6cb442
commit
e852505ace
1 changed files with 1 additions and 2 deletions
|
|
@ -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) })
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue