commit 1f373c1eb9c119605aac24f8cdeb7230925b1468
parent 86992aea6cece1998db2abad4abae61b8f12a2b8
Author: SomberNight <somber.night@protonmail.com>
Date: Mon, 28 May 2018 02:28:01 +0200
ecc: don't print trace when can't find libsecp
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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()