do not raise exception on strange input scripts

This commit is contained in:
ecdsa 2013-03-13 00:55:08 +01:00
parent a1be16105b
commit 6a848564fa
1 changed files with 2 additions and 1 deletions

View File

@ -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)"