mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-26 01:33:02 +01:00
peer: re-add AuthGossiper nil check
This commit is contained in:
parent
dad53b3f9a
commit
dd2da29cba
@ -757,6 +757,13 @@ func (p *Brontide) initGossipSync() {
|
||||
if p.remoteFeatures.HasFeature(lnwire.GossipQueriesOptional) {
|
||||
p.log.Info("Negotiated chan series queries")
|
||||
|
||||
if p.cfg.AuthGossiper == nil {
|
||||
// This should only ever be hit in the unit tests.
|
||||
p.log.Warn("No AuthGossiper configured. Abandoning " +
|
||||
"gossip sync.")
|
||||
return
|
||||
}
|
||||
|
||||
// Register the peer's gossip syncer with the gossiper.
|
||||
// This blocks synchronously to ensure the gossip syncer is
|
||||
// registered with the gossiper before attempting to read
|
||||
|
Loading…
x
Reference in New Issue
Block a user