Merge pull request #1807 from wpaulino/retransmit-zero-stale-channels
discovery/gossiper: check ErrNoGraphEdgesFound for restransmitStaleChannels
This commit is contained in:
commit
68774e3ae4
@ -950,8 +950,7 @@ func (d *AuthenticatedGossiper) networkHandler() {
|
||||
// To start, we'll first check to see if there are any stale channels
|
||||
// that we need to re-transmit.
|
||||
if err := d.retransmitStaleChannels(); err != nil {
|
||||
log.Errorf("unable to rebroadcast stale channels: %v",
|
||||
err)
|
||||
log.Errorf("Unable to rebroadcast stale channels: %v", err)
|
||||
}
|
||||
|
||||
// We'll use this validation to ensure that we process jobs in their
|
||||
@ -1349,9 +1348,9 @@ func (d *AuthenticatedGossiper) retransmitStaleChannels() error {
|
||||
|
||||
return nil
|
||||
})
|
||||
if err != nil {
|
||||
return fmt.Errorf("error while retrieving outgoing "+
|
||||
"channels: %v", err)
|
||||
if err != nil && err != channeldb.ErrGraphNoEdgesFound {
|
||||
return fmt.Errorf("unable to retrieve outgoing channels: %v",
|
||||
err)
|
||||
}
|
||||
|
||||
var signedUpdates []lnwire.Message
|
||||
|
Loading…
Reference in New Issue
Block a user