Skip to content

Commit

Permalink
Fix wallet status ignoring failed requests to create invoices (#1624)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzyis authored Nov 20, 2024
1 parent d238eaf commit 7448cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallets/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export async function createInvoice (userId, { msats, description, descriptionHa

return { invoice, wallet, logger }
} catch (err) {
logger.error(err.message)
logger.error(err.message, { status: true })
}
}

Expand Down

0 comments on commit 7448cef

Please sign in to comment.