Skip to content

Commit 40fa18a

Browse files
authored
BIP-21 QR Scanner Fixes (#544)
* fix: missed BIP-21 `amount` option + rename variable * add: BIP-21 `label` field * fix: remove unnecessary JSDoc Since `parseBIP21Request` already returns a clear format, JSDocs are correctly created for the function implicitly, we do not need to explicitly define anything.
1 parent d5a96fd commit 40fa18a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/dashboard/Dashboard.vue

+5-4
Original file line numberDiff line numberDiff line change
@@ -471,10 +471,11 @@ async function openSendQRScanner() {
471471
showTransferMenu.value = true;
472472
return;
473473
}
474-
const cBIP32Req = parseBIP21Request(data);
475-
if (cBIP32Req) {
476-
transferAddress.value = cBIP32Req.address;
477-
transferAmount.value = cBIP32Req.amount ?? 0;
474+
const cBIP21Req = parseBIP21Request(data);
475+
if (cBIP21Req) {
476+
transferAddress.value = cBIP21Req.address;
477+
transferDescription.value = cBIP21Req.options?.label ?? '';
478+
transferAmount.value = cBIP21Req.options?.amount ?? 0;
478479
showTransferMenu.value = true;
479480
return;
480481
}

scripts/misc.js

-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ export function isXPub(strXPub) {
258258
/**
259259
* Attempt to safely parse a BIP21 Payment Request
260260
* @param {string} strReq - BIP21 Payment Request string
261-
* @returns {object | false}
262261
*/
263262
export function parseBIP21Request(strReq) {
264263
// Format should match: pivx:addr[?amount=x&label=x]

0 commit comments

Comments
 (0)