mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2026-02-18 04:54:35 +01: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