Browse Source

Fix typo.

One character makes all the difference.
283
Neil Booth 9 years ago
parent
commit
3eca419ef3
  1. 2
      lib/transaction.py

2
lib/transaction.py

@ -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)

Loading…
Cancel
Save