Skip to content

Commit 9424551

Browse files
committed
Fix compatibility with macOS Catalina
Closes #238.
1 parent 78aaaf6 commit 9424551

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bitcoin/core/key.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131

3232
import bitcoin.core.script
3333

34-
_ssl = ctypes.cdll.LoadLibrary(ctypes.util.find_library('ssl') or 'libeay32')
34+
_ssl = ctypes.cdll.LoadLibrary(
35+
ctypes.util.find_library('ssl.35') or ctypes.util.find_library('ssl') or 'libeay32'
36+
)
3537

3638
_libsecp256k1_path = ctypes.util.find_library('secp256k1')
3739
_libsecp256k1_enable_signing = False

0 commit comments

Comments
 (0)