From a0096ca9b3253c84a851c6aea8f0d3a988656b2e Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Sun, 28 Jan 2024 14:23:09 -0500 Subject: [PATCH] removes some logs --- js/nostr-utils.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/nostr-utils.js b/js/nostr-utils.js index a35e5e5..0b215ea 100644 --- a/js/nostr-utils.js +++ b/js/nostr-utils.js @@ -209,7 +209,6 @@ const fetchFromRelay = async (relay, filters, pubkey, events, relayStatus) => } if (msgType === 'AUTH') { - console.log(relay, subscriptionId) signNostrAuthEvent(relay, subscriptionId).then( (event) => { if (event) { @@ -457,7 +456,6 @@ async function signNostrAuthEvent(relay, auth_challenge) { // Sign event signed_msg = await window.nostr.signEvent(msg); } catch (e) { - console.log(e) console.log("Failed to sign message with browser extension", e); return undefined; }