Browse Source

Show a message box when lnd errors occur

renovate/lint-staged-8.x
Ben Woosley 7 years ago
parent
commit
aff656a809
No known key found for this signature in database GPG Key ID: 4D8CA4BA18040906
  1. 10
      app/main.dev.js

10
app/main.dev.js

@ -10,7 +10,7 @@
* *
* *
*/ */
import { app, BrowserWindow, ipcMain } from 'electron' import { app, BrowserWindow, ipcMain, dialog } from 'electron'
import path from 'path' import path from 'path'
import fs from 'fs' import fs from 'fs'
import { spawn } from 'child_process' import { spawn } from 'child_process'
@ -159,7 +159,13 @@ const startLnd = (alias, autopilot) => {
] ]
const neutrino = spawn(lndConfig.lndPath, neutrinoArgs) const neutrino = spawn(lndConfig.lndPath, neutrinoArgs)
.on('error', error => console.log(`lnd error: ${error}`)) .on('error', (error) => {
console.log(`lnd error: ${error}`)
dialog.showMessageBox({
type: 'error',
message: `lnd error: ${error}`
})
})
.on('close', code => console.log(`lnd shutting down ${code}`)) .on('close', code => console.log(`lnd shutting down ${code}`))
// Listen for when neutrino prints out data // Listen for when neutrino prints out data

Loading…
Cancel
Save