|
17 | 17 | CTxOut,
|
18 | 18 | hash256,
|
19 | 19 | ser_string,
|
20 |
| - ser_uint256, |
21 | 20 | sha256,
|
22 |
| - uint256_from_str, |
23 | 21 | )
|
24 | 22 |
|
25 | 23 | from .crypto.ripemd160 import ripemd160
|
@@ -711,41 +709,42 @@ def sign_input_segwitv0(tx, input_index, input_scriptpubkey, input_amount, privk
|
711 | 709 | # Note that this corresponds to sigversion == 1 in EvalScript, which is used
|
712 | 710 | # for version 0 witnesses.
|
713 | 711 | def SegwitV0SignatureMsg(script, txTo, inIdx, hashtype, amount):
|
| 712 | + ZERO_HASH = bytes([0]*32) |
714 | 713 |
|
715 |
| - hashPrevouts = 0 |
716 |
| - hashSequence = 0 |
717 |
| - hashOutputs = 0 |
| 714 | + hashPrevouts = ZERO_HASH |
| 715 | + hashSequence = ZERO_HASH |
| 716 | + hashOutputs = ZERO_HASH |
718 | 717 |
|
719 | 718 | if not (hashtype & SIGHASH_ANYONECANPAY):
|
720 | 719 | serialize_prevouts = bytes()
|
721 | 720 | for i in txTo.vin:
|
722 | 721 | serialize_prevouts += i.prevout.serialize()
|
723 |
| - hashPrevouts = uint256_from_str(hash256(serialize_prevouts)) |
| 722 | + hashPrevouts = hash256(serialize_prevouts) |
724 | 723 |
|
725 | 724 | if (not (hashtype & SIGHASH_ANYONECANPAY) and (hashtype & 0x1f) != SIGHASH_SINGLE and (hashtype & 0x1f) != SIGHASH_NONE):
|
726 | 725 | serialize_sequence = bytes()
|
727 | 726 | for i in txTo.vin:
|
728 | 727 | serialize_sequence += i.nSequence.to_bytes(4, "little")
|
729 |
| - hashSequence = uint256_from_str(hash256(serialize_sequence)) |
| 728 | + hashSequence = hash256(serialize_sequence) |
730 | 729 |
|
731 | 730 | if ((hashtype & 0x1f) != SIGHASH_SINGLE and (hashtype & 0x1f) != SIGHASH_NONE):
|
732 | 731 | serialize_outputs = bytes()
|
733 | 732 | for o in txTo.vout:
|
734 | 733 | serialize_outputs += o.serialize()
|
735 |
| - hashOutputs = uint256_from_str(hash256(serialize_outputs)) |
| 734 | + hashOutputs = hash256(serialize_outputs) |
736 | 735 | elif ((hashtype & 0x1f) == SIGHASH_SINGLE and inIdx < len(txTo.vout)):
|
737 | 736 | serialize_outputs = txTo.vout[inIdx].serialize()
|
738 |
| - hashOutputs = uint256_from_str(hash256(serialize_outputs)) |
| 737 | + hashOutputs = hash256(serialize_outputs) |
739 | 738 |
|
740 | 739 | ss = bytes()
|
741 | 740 | ss += txTo.version.to_bytes(4, "little")
|
742 |
| - ss += ser_uint256(hashPrevouts) |
743 |
| - ss += ser_uint256(hashSequence) |
| 741 | + ss += hashPrevouts |
| 742 | + ss += hashSequence |
744 | 743 | ss += txTo.vin[inIdx].prevout.serialize()
|
745 | 744 | ss += ser_string(script)
|
746 | 745 | ss += amount.to_bytes(8, "little", signed=True)
|
747 | 746 | ss += txTo.vin[inIdx].nSequence.to_bytes(4, "little")
|
748 |
| - ss += ser_uint256(hashOutputs) |
| 747 | + ss += hashOutputs |
749 | 748 | ss += txTo.nLockTime.to_bytes(4, "little")
|
750 | 749 | ss += hashtype.to_bytes(4, "little")
|
751 | 750 | return ss
|
|
0 commit comments