From 1f373c1eb9c119605aac24f8cdeb7230925b1468 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Mon, 28 May 2018 02:28:01 +0200 Subject: [PATCH] ecc: don't print trace when can't find libsecp --- lib/ecc_fast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ecc_fast.py b/lib/ecc_fast.py index 3f18a8105..ac9b1a2f2 100644 --- a/lib/ecc_fast.py +++ b/lib/ecc_fast.py @@ -213,6 +213,6 @@ try: _libsecp256k1 = load_library() except: _libsecp256k1 = None - traceback.print_exc(file=sys.stderr) + #traceback.print_exc(file=sys.stderr) _prepare_monkey_patching_of_python_ecdsa_internals_with_libsecp256k1()