mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-18 18:17:39 +01:00
lnwallet: sort sig jobs before submission
This commit is contained in:
committed by
Oliver Gugger
parent
a0baa8fb41
commit
48567e8944
@@ -2,6 +2,7 @@ package lnwallet
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"cmp"
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -3996,10 +3997,10 @@ func (lc *LightningChannel) SignNextCommitment() (*NewCommitState, error) {
|
|||||||
// order as they appear on the commitment transaction after BIP 69
|
// order as they appear on the commitment transaction after BIP 69
|
||||||
// sorting.
|
// sorting.
|
||||||
slices.SortFunc(sigBatch, func(i, j SignJob) int {
|
slices.SortFunc(sigBatch, func(i, j SignJob) int {
|
||||||
return int(i.OutputIndex - j.OutputIndex)
|
return cmp.Compare(i.OutputIndex, j.OutputIndex)
|
||||||
})
|
})
|
||||||
slices.SortFunc(auxSigBatch, func(i, j AuxSigJob) int {
|
slices.SortFunc(auxSigBatch, func(i, j AuxSigJob) int {
|
||||||
return int(i.OutputIndex - j.OutputIndex)
|
return cmp.Compare(i.OutputIndex, j.OutputIndex)
|
||||||
})
|
})
|
||||||
|
|
||||||
lc.sigPool.SubmitSignBatch(sigBatch)
|
lc.sigPool.SubmitSignBatch(sigBatch)
|
||||||
|
|||||||
Reference in New Issue
Block a user