We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently to authenticate we need to do:
DAEMON_URL=http://username:password@hostname:port
It would be great if the credentials were optional and we could instead specify the Bitcoin Core cooke path:
DAEMON_URL=http://hostname:port DAEMON_COOKIE_FILE=$HOME/.bitcoin/.cookie
The text was updated successfully, but these errors were encountered:
I would like to take on this one.
Sorry, something went wrong.
As workaround you can do that:
DAEMON_URL="http://$(cat "$HOME/.bitcoin/.cookie")@hostname:port"
if you use bash
No branches or pull requests
Currently to authenticate we need to do:
It would be great if the credentials were optional and we could instead specify the Bitcoin Core cooke path:
The text was updated successfully, but these errors were encountered: