URI: 
       tfix signatures returned by get_address_from_input_script. fixes #653 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit cba7a5d68dbd56793b3479e90cae965e1ed224fb
   DIR parent 4a79769af484ce9b0dd736d6b2d7783a0920ab98
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun, 13 Apr 2014 14:57:42 +0200
       
       fix signatures returned by get_address_from_input_script. fixes #653
       
       Diffstat:
         M lib/transaction.py                  |      10 ++++++----
       
       1 file changed, 6 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/lib/transaction.py b/lib/transaction.py
       t@@ -301,19 +301,21 @@ def get_address_from_input_script(bytes):
            except Exception:
                # coinbase transactions raise an exception
                print_error("cannot find address in input script", bytes.encode('hex'))
       -        return [], [], "(None)"
       +        return [], {}, "(None)"
        
            # payto_pubkey
            match = [ opcodes.OP_PUSHDATA4 ]
            if match_decoded(decoded, match):
       -        return None, None, "(pubkey)"
       +        return None, {}, "(pubkey)"
        
            # non-generated TxIn transactions push a signature
            # (seventy-something bytes) and then their public key
            # (65 bytes) onto the stack:
            match = [ opcodes.OP_PUSHDATA4, opcodes.OP_PUSHDATA4 ]
            if match_decoded(decoded, match):
       -        return None, None, public_key_to_bc_address(decoded[1][1])
       +        sig = decoded[0][1].encode('hex')
       +        pubkey = decoded[1][1].encode('hex')
       +        return [pubkey], {pubkey:sig}, public_key_to_bc_address(pubkey.decode('hex'))
        
            # p2sh transaction, 2 of n
            match = [ opcodes.OP_0 ]
       t@@ -341,7 +343,7 @@ def get_address_from_input_script(bytes):
                    return pubkeys, signatures, hash_160_to_bc_address(hash_160(redeemScript), 5)
        
            print_error("cannot find address in input script", bytes.encode('hex'))
       -    return [], [], "(None)"
       +    return [], {}, "(None)"