mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-01 02:02:10 +02:00
channeldb/payments: use only Read bucket when iterating
This commit is contained in:
@@ -694,7 +694,7 @@ func (db *DB) DeletePayments(failedOnly bool) error {
|
||||
deleteIndexes [][]byte
|
||||
)
|
||||
err := payments.ForEach(func(k, _ []byte) error {
|
||||
bucket := payments.NestedReadWriteBucket(k)
|
||||
bucket := payments.NestedReadBucket(k)
|
||||
if bucket == nil {
|
||||
// We only expect sub-buckets to be found in
|
||||
// this top-level bucket.
|
||||
|
Reference in New Issue
Block a user