electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 30b6d9b64e1034301ae834789d24ffb88a86c332
parent 8cf97fdb52ce05792c0d93a4a9c4d3f4d5ed277a
Author: ThomasV <thomasv@gitorious>
Date:   Sat, 23 Feb 2013 17:23:12 +0100

minor fix: unneeded

Diffstat:
Mlib/deserialize.py | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/lib/deserialize.py b/lib/deserialize.py @@ -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")