Browse Source

remove unhandled promise error (all dojo modules)

umbrel
kenshin-samourai 5 years ago
parent
commit
4b9ba34be9
  1. 5
      pushtx/index-orchestrator.js
  2. 5
      pushtx/index.js
  3. 5
      tracker/index.js

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