mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-11 07:39:41 +02:00
discovery: add missing offline peer check before sending message reliably
This commit is contained in:
@@ -225,6 +225,14 @@ out:
|
||||
// can only contain messages which have a ShortChannelID field.
|
||||
shortChanID, _ := msgShortChanID(msg)
|
||||
|
||||
// Ensure the peer is still online right before sending the
|
||||
// message.
|
||||
select {
|
||||
case <-offlineChan:
|
||||
goto waitUntilOnline
|
||||
default:
|
||||
}
|
||||
|
||||
if err := peer.SendMessage(false, msg); err != nil {
|
||||
log.Errorf("Unable to send %v message for channel=%v "+
|
||||
"to %x: %v", msg.MsgType(), shortChanID,
|
||||
|
Reference in New Issue
Block a user