make description hash match?

This commit is contained in:
keyan 2021-10-07 13:14:11 -07:00
parent 48ff38dc56
commit 5928dcf06d
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export default async ({ query: { username, amount } }, res) => {
// generate invoice
const expiresAt = new Date(new Date().setHours(new Date().getHours() + 3))
const description = `${amount} msats for @${user.name} on stacker.news`
const description = `Funding @${username} on stacker.news`
try {
const invoice = await createInvoice({
description,