invoices: do not log when invoice is already deleted

This commit is contained in:
Andras Banki-Horvath
2021-11-01 10:10:00 +01:00
parent 217019aa8a
commit 76065e84d3
2 changed files with 8 additions and 0 deletions

View File

@@ -353,6 +353,11 @@ func (ew *InvoiceExpiryWatcher) expireInvoice(hash lntypes.Hash, force bool) {
case channeldb.ErrInvoiceAlreadySettled:
case channeldb.ErrInvoiceNotFound:
// It's possible that the user has manually canceled the invoice
// which will then be deleted by the garbage collector resulting
// in an ErrInvoiceNotFound error.
default:
log.Errorf("Unable to cancel invoice: %v: %v", hash, err)
}