Browse Source

Merge pull request #403 from Empact/fix/lnd-already-running

Fix the local lnd already running usecase
renovate/lint-staged-8.x
Ben Woosley 7 years ago
committed by GitHub
parent
commit
8143e5344f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      app/main.dev.js

3
app/main.dev.js

@ -283,7 +283,7 @@ app.on('ready', async () => {
autopilot: options.autopilot autopilot: options.autopilot
} }
console.log('SAVED CONFIG TO:', store.pathm, 'AS', store.store) console.log('SAVED CONFIG TO:', store.path, 'AS', store.store)
if (options.connectionType === 'local') { if (options.connectionType === 'local') {
console.log('LOOKING FOR LOCAL LND') console.log('LOOKING FOR LOCAL LND')
@ -301,6 +301,7 @@ app.on('ready', async () => {
// An LND process was found, no need to start our own. // An LND process was found, no need to start our own.
console.log('LND ALREADY RUNNING') console.log('LND ALREADY RUNNING')
startGrpc() startGrpc()
mainWindow.webContents.send('successfullyCreatedWallet')
} }
}) })
} else { } else {

Loading…
Cancel
Save