txscript/sign: Use calcWitnessSigHashRaw for witness sigs
This commit is contained in:
parent
94e99cf6b7
commit
69f3a39c1c
1 changed files with 1 additions and 6 deletions
|
@ -22,12 +22,7 @@ func RawTxInWitnessSignature(tx *wire.MsgTx, sigHashes *TxSigHashes, idx int,
|
||||||
amt int64, subScript []byte, hashType SigHashType,
|
amt int64, subScript []byte, hashType SigHashType,
|
||||||
key *btcec.PrivateKey) ([]byte, error) {
|
key *btcec.PrivateKey) ([]byte, error) {
|
||||||
|
|
||||||
parsedScript, err := parseScript(subScript)
|
hash, err := calcWitnessSignatureHashRaw(subScript, sigHashes, hashType, tx,
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("cannot parse output script: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
hash, err := calcWitnessSignatureHash(parsedScript, sigHashes, hashType, tx,
|
|
||||||
idx, amt)
|
idx, amt)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Reference in a new issue