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
Hi,
I was looking at the following code
const {lnd} = lnService.authenticatedLndGrpc({ cert: 'base64 encoded tls.cert', macaroon: 'base64 encoded admin.macaroon', socket: '127.0.0.1:10009', });
I was wondering if there is some kind of disconnection "emit" or similar so i know when LND has gone down - for example.
meaning I am able to re-connect
Or does it work another way ?
The grpc methods would just fail if you called them ?
The active subscription methods would emit an error ?
If there was a connection issue, would we need to re-connect using the above i.e.
The text was updated successfully, but these errors were encountered:
If LND goes down, yes the connection will fail with an error and you will need to recreate the connection
Sorry, something went wrong.
No branches or pull requests
Hi,
I was looking at the following code
I was wondering if there is some kind of disconnection "emit" or similar so i know when LND has gone down - for example.
meaning I am able to re-connect
Or does it work another way ?
The grpc methods would just fail if you called them ?
The active subscription methods would emit an error ?
If there was a connection issue, would we need to re-connect using the above i.e.
const {lnd} = lnService.authenticatedLndGrpc({
cert: 'base64 encoded tls.cert',
macaroon: 'base64 encoded admin.macaroon',
socket: '127.0.0.1:10009',
});
The text was updated successfully, but these errors were encountered: