mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2026-01-18 13:54:23 +01: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