Merge pull request #227 from shocknet/fix/handle-err

handle tip jobs err gracefully
This commit is contained in:
CapDog 2020-10-23 09:31:23 -05:00 committed by GitHub
commit 4bae127c09

View file

@ -208,6 +208,9 @@ const startTipStatusJob = () => {
executeTipAction(tip, invoice)
}
})
stream.on('error', err => {
Logger.error('Tip Job error' + err.details)
})
}
module.exports = {