channeldb/payments: use only Read bucket when iterating

This commit is contained in:
Johan T. Halseth 2021-01-22 14:43:32 +01:00
parent 7e3738d773
commit 6eb42aec0a
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -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.