Skip to content

Commit

Permalink
fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dillon-co committed Feb 9, 2024
1 parent 69d1262 commit 2832e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export async function autoDropBolt11s ({ models, lnd }) {
AND now() > created_at + interval '${INVOICE_RETENTION_DAYS} days'
AND hash IS NOT NULL;`)

if(invoices.length > 0) {
if (invoices.length > 0) {
const failedDeletesUpdatePromises = []
for (const invoice of invoices) {
try {
Expand Down

0 comments on commit 2832e16

Please sign in to comment.