Skip to content

Commit a336854

Browse files
committed
psbt: fix typo, remove TODO
1 parent a86222c commit a336854

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

btcutil/psbt/partialsig.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package psbt
22

33
import (
44
"bytes"
5-
65
"github.com/btcsuite/btcd/btcec/v2"
76
"github.com/btcsuite/btcd/btcec/v2/ecdsa"
87
)
@@ -43,11 +42,8 @@ func validateSignature(sig []byte) bool {
4342
return err == nil
4443
}
4544

46-
// checkValid checks that both the pbukey and sig are valid. See the methods
45+
// checkValid checks that both the pubkey and sig are valid. See the methods
4746
// (PartialSig, validatePubkey, validateSignature) for more details.
48-
//
49-
// TODO(waxwing): update for Schnorr will be needed here if/when that
50-
// activates.
5147
func (ps *PartialSig) checkValid() bool {
5248
return validatePubkey(ps.PubKey) && validateSignature(ps.Signature)
5349
}

0 commit comments

Comments
 (0)