Skip to content

Commit

Permalink
Merge branch 'leshik-238_fix-ssl-macos-catalina' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzure committed Jul 15, 2020
2 parents 78aaaf6 + 9424551 commit b5540e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bitcoin/core/key.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@

import bitcoin.core.script

_ssl = ctypes.cdll.LoadLibrary(ctypes.util.find_library('ssl') or 'libeay32')
_ssl = ctypes.cdll.LoadLibrary(
ctypes.util.find_library('ssl.35') or ctypes.util.find_library('ssl') or 'libeay32'
)

_libsecp256k1_path = ctypes.util.find_library('secp256k1')
_libsecp256k1_enable_signing = False
Expand Down

0 comments on commit b5540e8

Please # to comment.