jgarzik / python-bitcoinrpc

Python interface to bitcoin's JSON-RPC API
GNU Lesser General Public License v2.1
644 stars 304 forks source link

Add veryfy_ssl option into AuthServiceProxy constructor to allow bypassing cert verification #91

Closed kcyeu closed 4 years ago

kcyeu commented 5 years ago

In v1.0, we can create connection with ssl._create_unverified_context then pass it into constructor on AuthServiceProxy instantiation to allow unverified SSL. This PR proposes an intuitive option to achieve this.

kcyeu commented 4 years ago

Don't need it anymore since __init__ now accepts ssl_context.