channeldb: rename paymentSeqMx

This commit is contained in:
ziggie
2025-08-11 16:23:09 +02:00
parent 88da582526
commit 6bae3c98b3

View File

@@ -120,7 +120,7 @@ var (
// KVPaymentsDB implements persistence for payments and payment attempts.
type KVPaymentsDB struct {
// Sequence management for the kv store.
paymentSeqMx sync.Mutex
seqMu sync.Mutex
currPaymentSeq uint64
storedPaymentSeq uint64
@@ -757,8 +757,8 @@ func fetchPaymentBucketUpdate(tx kvdb.RwTx, paymentHash lntypes.Hash) (
// nextPaymentSequence returns the next sequence number to store for a new
// payment.
func (p *KVPaymentsDB) nextPaymentSequence() ([]byte, error) {
p.paymentSeqMx.Lock()
defer p.paymentSeqMx.Unlock()
p.seqMu.Lock()
defer p.seqMu.Unlock()
// Set a new upper bound in the DB every 1000 payments to avoid
// conflicts on the sequence when using etcd.