You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am building a diagnostic procedure to check multiple running parts of my app. One of them is LND instance, and before running the app I run the procedure and see the status of all parts.
How do I know that LND instance is reachable and authenticated succesfully?
My startpoint is:
const { lnd } = authenticatedLndGrpc(MY_CONFIG)
But by looking into lnd, I don't see any clue. So, when it connects, or doesn't connect (due to LND is down), I don't see any sign of any. I know I can run some method like getChainBalance({ lnd }), to know if commands go through, but is there some other more basic option?
The text was updated successfully, but these errors were encountered:
I am building a diagnostic procedure to check multiple running parts of my app. One of them is LND instance, and before running the app I run the procedure and see the status of all parts.
How do I know that LND instance is reachable and authenticated succesfully?
My startpoint is:
But by looking into lnd, I don't see any clue. So, when it connects, or doesn't connect (due to LND is down), I don't see any sign of any. I know I can run some method like
getChainBalance({ lnd })
, to know if commands go through, but is there some other more basic option?The text was updated successfully, but these errors were encountered: