tminor fix: unneeded - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 30b6d9b64e1034301ae834789d24ffb88a86c332 DIR parent 8cf97fdb52ce05792c0d93a4a9c4d3f4d5ed277a HTML Author: ThomasV <thomasv@gitorious> Date: Sat, 23 Feb 2013 17:23:12 +0100 minor fix: unneeded Diffstat: M lib/deserialize.py | 1 - 1 file changed, 0 insertions(+), 1 deletion(-) --- DIR diff --git a/lib/deserialize.py b/lib/deserialize.py t@@ -354,7 +354,6 @@ def get_address_from_input_script(bytes): match2 = [ opcodes.OP_2, opcodes.OP_PUSHDATA4, opcodes.OP_PUSHDATA4, opcodes.OP_PUSHDATA4, opcodes.OP_3, opcodes.OP_CHECKMULTISIG ] if match_decoded(dec2, match2): pubkeys = [ dec2[1][1].encode('hex'), dec2[2][1].encode('hex'), dec2[3][1].encode('hex') ] - s = multisig_script(pubkeys) return pubkeys, signatures, hash_160_to_bc_address(hash_160(redeemScript), 5) raise BaseException("no match for scriptsig")