Fix SIGHASH_SINGLE bug in test_framework SignatureHash

The value for "other" inputs should be -1 (0xffffffffffffffff) instead of 0
This commit is contained in:
Johnson Lau 2016-09-06 00:50:23 +08:00 committed by GitHub
parent e82fb872ff
commit 2f2548d5e0
1 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,7 @@ def SignatureHash(script, txTo, inIdx, hashtype):
tmp = txtmp.vout[outIdx]
txtmp.vout = []
for i in range(outIdx):
txtmp.vout.append(CTxOut())
txtmp.vout.append(CTxOut(-1))
txtmp.vout.append(tmp)
for i in range(len(txtmp.vin)):