Browse Source

fix #2565: do not show traceback

2.9.x
ThomasV 7 years ago
parent
commit
91235ed7ac
  1. 4
      lib/transaction.py

4
lib/transaction.py

@ -333,9 +333,7 @@ def parse_scriptSig(d, bytes):
try:
signatures = parse_sig([sig])
pubkey, address = xpubkey_to_address(x_pubkey)
except:
import traceback
traceback.print_exc(file=sys.stdout)
except BaseException:
print_error("cannot find address in input script", bytes.encode('hex'))
return
d['type'] = 'p2pkh'

Loading…
Cancel
Save