Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/lib/lnd/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const createMacaroonCreds = async macaroonPath => {
export const isLndRunning = () => {
return new Promise((resolve, reject) => {
mainLog.info('Looking for existing lnd process')
lookup({ command: 'lnd' }, (err, results) => {
lookup({ command: 'lnd', psargs: 'x -o pid,command' }, (err, results) => {
// There was an error checking for the LND process.
if (err) {
return reject(err)
Expand Down