Linter fixes

This commit is contained in:
Mike Fluff 2019-03-06 11:36:19 +07:00
parent cb722e1608
commit 3317e620dd
2 changed files with 2 additions and 2 deletions

View File

@ -312,7 +312,7 @@ export class User {
delete invoice.payment_route;
delete invoice.pay_req;
delete invoice.decoded;
result.push(invoice);
result.push(invoice);
}
return result;
}

View File

@ -279,7 +279,7 @@ router.get('/gettxs', async function(req, res) {
if (!(await u.getAddress())) await u.generateAddress(); // onchain addr needed further
try {
await u.accountForPosibleTxids();
await u.accountForPosibleTxids();
let txs = await u.getTxs();
res.send(txs);
} catch (Err) {