removes some logs

This commit is contained in:
Vitor Pamplona 2024-01-28 14:23:09 -05:00
parent 5ce8fe83d2
commit a0096ca9b3

View File

@ -209,7 +209,6 @@ const fetchFromRelay = async (relay, filters, pubkey, events, relayStatus) =>
} }
if (msgType === 'AUTH') { if (msgType === 'AUTH') {
console.log(relay, subscriptionId)
signNostrAuthEvent(relay, subscriptionId).then( signNostrAuthEvent(relay, subscriptionId).then(
(event) => { (event) => {
if (event) { if (event) {
@ -457,7 +456,6 @@ async function signNostrAuthEvent(relay, auth_challenge) {
// Sign event // Sign event
signed_msg = await window.nostr.signEvent(msg); signed_msg = await window.nostr.signEvent(msg);
} catch (e) { } catch (e) {
console.log(e)
console.log("Failed to sign message with browser extension", e); console.log("Failed to sign message with browser extension", e);
return undefined; return undefined;
} }