mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-07 05:49:59 +02:00
discovery: if gossipSyncer is shutting down, don't filter messages
This commit is contained in:
@ -805,6 +805,12 @@ func (g *gossipSyncer) FilterGossipMsgs(msgs ...msgWithSenders) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If we've been signalled to exit, or are exiting, then we'll stop
|
||||||
|
// short.
|
||||||
|
if atomic.LoadUint32(&g.stopped) == 1 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// TODO(roasbeef): need to ensure that peer still online...send msg to
|
// TODO(roasbeef): need to ensure that peer still online...send msg to
|
||||||
// gossiper on peer termination to signal peer disconnect?
|
// gossiper on peer termination to signal peer disconnect?
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user