removed debug

This commit is contained in:
Josh Harvey 2017-03-22 01:41:38 +02:00
parent b7a93b89f5
commit fe1ed536c5
4 changed files with 1 additions and 18 deletions

View file

@ -80,14 +80,12 @@ function poll (req, res, next) {
}
function getTx (req, res, next) {
console.log('DEBUG333: %s', req.query.status)
if (req.query.status) {
return helpers.fetchStatusTx(req.params.id, req.query.status)
.then(r => res.json(r))
.catch(next)
}
console.log('DEBUG334')
return next(httpError('Not Found', 404))
}