Browse Source
Merge pull request #73 from junderw/patch-1
Remove Unhandled promise error
umbrel
kenshin samourai
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
16 additions and
4 deletions
-
accounts/index.js
-
pushtx/index-orchestrator.js
-
pushtx/index.js
-
tracker/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) |
|
|
|
}) |
|
|
|
|
|
@ -46,4 +46,7 @@ |
|
|
|
const orchestrator = new Orchestrator() |
|
|
|
orchestrator.start() |
|
|
|
|
|
|
|
})() |
|
|
|
})().catch(err => { |
|
|
|
console.error(err) |
|
|
|
process.exit(1) |
|
|
|
}) |
|
|
|
|
|
@ -54,4 +54,7 @@ |
|
|
|
// Start the http server
|
|
|
|
httpServer.start() |
|
|
|
|
|
|
|
})() |
|
|
|
})().catch(err => { |
|
|
|
console.error(err) |
|
|
|
process.exit(1) |
|
|
|
}) |
|
|
|
|
|
@ -37,4 +37,7 @@ |
|
|
|
const tracker = new Tracker() |
|
|
|
tracker.start() |
|
|
|
|
|
|
|
})() |
|
|
|
})().catch(err => { |
|
|
|
console.error(err) |
|
|
|
process.exit(1) |
|
|
|
}) |
|
|
|