From 91235ed7acdf91741a2032f1a64deb1f8ac06d5f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 28 Jun 2017 05:26:52 +0200 Subject: [PATCH] fix #2565: do not show traceback --- lib/transaction.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/transaction.py b/lib/transaction.py index ba0b50d9..4f6eccf2 100644 --- a/lib/transaction.py +++ b/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'