Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python-bitcoinrpc has changed #11

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

gustavklopp
Copy link

We can't use python-bitcoinrpc as before:
the import files don't exist anymore
to connect to bitcoind, only is needed :

from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
# rpc_user and rpc_password are set in the bitcoin.conf file
bitcoin = AuthServiceProxy("http://%s:%[email protected]:8332"%(rpc_user, rpc_password))

No connection.py needed. 
Import files don't exist anymore.
To connect to bitcoind, only `bitcoin = AuthServiceProxy("http://%s:%[email protected]:8332"%(rpc_user, rpc_password))` is used
No need of connection.py
the import files in python-bitcoinrpc don't exist anymore.
To connect to bitcoind, only is needed: `bitcoin = AuthServiceProxy("http://%s:%[email protected]:8332"%(rpc_user, rpc_password))`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant