From 25f75f0364c3449fff11e496e875350431079218 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Fri, 16 Aug 2024 15:45:03 +0200 Subject: [PATCH] remove comments --- src/stores/wallet.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/stores/wallet.ts b/src/stores/wallet.ts index 91a1b7c..aa302b7 100644 --- a/src/stores/wallet.ts +++ b/src/stores/wallet.ts @@ -1049,10 +1049,6 @@ export const useWalletStore = defineStore("wallet", { const resp = await axios.get(host); // Moved it here: we don't want 2 potential calls data = resp.data; } else if (address.toLowerCase().slice(0, 6) === "lnurl1") { - // let host = Buffer.from( - // bech32.fromWords(bech32.decode(address, 20000).words) - // ).toString(); - // without Buffer: let decoded = bech32.decode(address, 20000); const words = bech32.fromWords(decoded.words); const uint8Array = new Uint8Array(words);