diff --git a/docs/release-notes/release-notes-0.18.0.md b/docs/release-notes/release-notes-0.18.0.md index 6f13bb41c..1910d2c25 100644 --- a/docs/release-notes/release-notes-0.18.0.md +++ b/docs/release-notes/release-notes-0.18.0.md @@ -415,6 +415,9 @@ bitcoin peers' feefilter values into account](https://github.com/lightningnetwor start](https://github.com/lightningnetwork/lnd/pull/8568) if native SQL is enabled but the channeldb already has any KV invoices stored. +* [Fix a bug](https://github.com/lightningnetwork/lnd/pull/8595) when retrying + SQL InvoiceDB transactions due to database errors. + ## Code Health * [Remove database pointers](https://github.com/lightningnetwork/lnd/pull/8117) diff --git a/sqldb/invoices.go b/sqldb/invoices.go index 6e2cb47a1..e251f42d1 100644 --- a/sqldb/invoices.go +++ b/sqldb/invoices.go @@ -611,10 +611,11 @@ func (i *InvoiceStore) LookupInvoice(ctx context.Context, func (i *InvoiceStore) FetchPendingInvoices(ctx context.Context) ( map[lntypes.Hash]invpkg.Invoice, error) { - invoices := make(map[lntypes.Hash]invpkg.Invoice) + var invoices map[lntypes.Hash]invpkg.Invoice readTxOpt := NewInvoiceQueryReadTx() err := i.db.ExecTx(ctx, &readTxOpt, func(db InvoiceQueries) error { + invoices = make(map[lntypes.Hash]invpkg.Invoice) limit := queryPaginationLimit return queryWithLimit(func(offset int) (int, error) { @@ -671,6 +672,7 @@ func (i *InvoiceStore) InvoicesSettledSince(ctx context.Context, idx uint64) ( readTxOpt := NewInvoiceQueryReadTx() err := i.db.ExecTx(ctx, &readTxOpt, func(db InvoiceQueries) error { + invoices = nil settleIdx := idx limit := queryPaginationLimit @@ -784,6 +786,7 @@ func (i *InvoiceStore) InvoicesAddedSince(ctx context.Context, idx uint64) ( readTxOpt := NewInvoiceQueryReadTx() err := i.db.ExecTx(ctx, &readTxOpt, func(db InvoiceQueries) error { + result = nil addIdx := idx limit := queryPaginationLimit @@ -840,6 +843,7 @@ func (i *InvoiceStore) QueryInvoices(ctx context.Context, readTxOpt := NewInvoiceQueryReadTx() err := i.db.ExecTx(ctx, &readTxOpt, func(db InvoiceQueries) error { + invoices = nil limit := queryPaginationLimit return queryWithLimit(func(offset int) (int, error) {