invoices: if there are no invoices make gc noop

This commit is contained in:
djkazic
2024-04-30 11:40:44 -04:00
parent e8a1d4876e
commit 1542424782
2 changed files with 6 additions and 3 deletions

View File

@@ -2681,8 +2681,11 @@ func testDeleteCanceledInvoices(t *testing.T,
}, nil
}
// Add some invoices to the test db.
// Test deletion of canceled invoices when there are none.
ctxb := context.Background()
require.NoError(t, db.DeleteCanceledInvoices(ctxb))
// Add some invoices to the test db.
var invoices []invpkg.Invoice
for i := 0; i < 10; i++ {
invoice, err := randInvoice(lnwire.MilliSatoshi(i + 1))