From 0de1ee2028d69162f6e81b1bdf08b1a13486fd49 Mon Sep 17 00:00:00 2001 From: Robbie Carlton Date: Thu, 18 Jul 2024 11:46:26 -0600 Subject: [PATCH] remove logs --- src/utils/registration.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/utils/registration.ts b/src/utils/registration.ts index 9d27432..e1fa882 100644 --- a/src/utils/registration.ts +++ b/src/utils/registration.ts @@ -51,10 +51,6 @@ export async function getBase64EncodedMembraneProof ({ throw new Error('Membrane Proof payload parsing error') } - console.log(`^&* about to fetch registration`, membrane_proof_server_url) - console.log(`^&* params`, params) - console.log(`^&* JSON.stringify(params)`, JSON.stringify(params)) - let data try { const resp = await fetch(`${membrane_proof_server_url}`, { @@ -66,8 +62,6 @@ export async function getBase64EncodedMembraneProof ({ }) data = await resp.json() - - console.log("^&* data", data) } catch (e: any) { throw new Error(`Membrane Proof Server network error: ${e?.message}`) }