Fix typo.

One character makes all the difference.
This commit is contained in:
Neil Booth 2015-11-30 23:47:14 +09:00
parent 2be906fde2
commit 3eca419ef3
1 changed files with 1 additions and 1 deletions

View File

@ -646,7 +646,7 @@ class Transaction:
def serialize_input(self, txin, i, for_sig):
# Prev hash and index
s = txin['prevout_hash'].decode('hex')[::-1].encode('hex')
s = int_to_hex(txin['prevout_n'], 4)
s += int_to_hex(txin['prevout_n'], 4)
# Script length, script, sequence
script = self.input_script(txin, i, for_sig)
s += var_int(len(script) / 2)