Browse Source

Merge pull request #73 from junderw/patch-1

Remove Unhandled promise error
umbrel
kenshin samourai 5 years ago
committed by GitHub
parent
commit
d0b5ee7613
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      accounts/index.js
  2. 5
      pushtx/index-orchestrator.js
  3. 5
      pushtx/index.js
  4. 5
      tracker/index.js

5
accounts/index.js

@ -73,4 +73,7 @@
// Attach the web sockets server to the web server
notifServer.attach(httpServer)
})()
})().catch(err => {
console.error(err)
process.exit(1)
})

5
pushtx/index-orchestrator.js

@ -46,4 +46,7 @@
const orchestrator = new Orchestrator()
orchestrator.start()
})()
})().catch(err => {
console.error(err)
process.exit(1)
})

5
pushtx/index.js

@ -54,4 +54,7 @@
// Start the http server
httpServer.start()
})()
})().catch(err => {
console.error(err)
process.exit(1)
})

5
tracker/index.js

@ -37,4 +37,7 @@
const tracker = new Tracker()
tracker.start()
})()
})().catch(err => {
console.error(err)
process.exit(1)
})

Loading…
Cancel
Save