From fe160ef698b22116b5ad2833deb40961fa33fc90 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Sun, 21 Sep 2025 20:44:19 +0200 Subject: [PATCH] Fix comment indentation --- wallets/lib/validate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/lib/validate.js b/wallets/lib/validate.js index 4dc4e630..8314a97e 100644 --- a/wallets/lib/validate.js +++ b/wallets/lib/validate.js @@ -29,7 +29,7 @@ export const nwcUrlValidator = () => try { ({ relayUrls, walletPubkey, secret } = parseNwcUrl(url)) } catch { - // invalid URL error. handle as if pubkey validation failed to not confuse user. + // invalid URL error. handle as if pubkey validation failed to not confuse user. throw new Error('pubkey must be 64 hex chars') } string().required('pubkey required').trim().matches(NOSTR_PUBKEY_HEX, 'pubkey must be 64 hex chars').validateSync(walletPubkey)