From 3eca419ef3399c67240780f726835dbab22a85d7 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Mon, 30 Nov 2015 23:47:14 +0900 Subject: [PATCH] Fix typo. One character makes all the difference. --- lib/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transaction.py b/lib/transaction.py index 5dde8f7e..b5d903bc 100644 --- a/lib/transaction.py +++ b/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)