From eed0efb30603dafb882691da07d9f1033b2bbad4 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Wed, 26 Apr 2023 17:20:55 -0500 Subject: [PATCH] no description in invoice --- src/routes/Receive.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Receive.tsx b/src/routes/Receive.tsx index b413320..c89ae56 100644 --- a/src/routes/Receive.tsx +++ b/src/routes/Receive.tsx @@ -138,7 +138,7 @@ export default function Receive() { async function getUnifiedQr(amount: string) { const bigAmount = BigInt(amount); try { - const raw = await state.node_manager?.create_bip21(bigAmount, "TODO DELETE ME"); + const raw = await state.node_manager?.create_bip21(bigAmount); // Save the raw info so we can watch the address and invoice setBip21Raw(raw);