Browse Source

do not raise exception on strange input scripts

283
ecdsa 12 years ago
parent
commit
6a848564fa
  1. 3
      lib/deserialize.py

3
lib/deserialize.py

@ -356,7 +356,8 @@ def get_address_from_input_script(bytes):
pubkeys = [ dec2[1][1].encode('hex'), dec2[2][1].encode('hex'), dec2[3][1].encode('hex') ]
return pubkeys, signatures, hash_160_to_bc_address(hash_160(redeemScript), 5)
raise BaseException("no match for scriptsig")
print_error("cannot find address in input script", bytes.encode('hex'))
return "(None)"

Loading…
Cancel
Save