-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
LND Connect functionality for the App and Desktop version #26
Conversation
I'm going to make some changes before merging |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a lot of hardcoded filesystem paths and lines that are much longer than 79 characters to me... fix is easy enough: instead of
def encodemacaroons(macaroonfile='/media/important/important/lnd/data/chain/bitcoin/mainnet/admin.macaroon', ...)
just do
MACAROON_FILE='/media/important/important/lnd/data/chain/bitcoin/mainnet/admin.macaroon'
def encode_macaroons(
macaroonfile=MACAROON_FILE,
...
):
It's producing strings but I can't get it to connect to Zap. I've checked connectivity, and Zap connects to lnd manually when given the files. The specification is here Perhaps the base64 encoding is not being adhered to properly? |
2 similar comments
It's producing strings but I can't get it to connect to Zap. I've checked connectivity, and Zap connects to lnd manually when given the files. The specification is here Perhaps the base64 encoding is not being adhered to properly? |
It's producing strings but I can't get it to connect to Zap. I've checked connectivity, and Zap connects to lnd manually when given the files. The specification is here Perhaps the base64 encoding is not being adhered to properly? |
is the hostname correct? Is the tls certificate valid for that hostname? |
Done. Use |
This pull request closes #15
Usage