From d9433a2116541160ed82f6780116c1c70afe4e2f Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 11 May 2020 18:19:43 +0530 Subject: logging --- src/operations/refresh.ts | 4 ---- src/operations/withdraw.ts | 6 ------ 2 files changed, 10 deletions(-) (limited to 'src/operations') diff --git a/src/operations/refresh.ts b/src/operations/refresh.ts index 56d18f28b..5563d94de 100644 --- a/src/operations/refresh.ts +++ b/src/operations/refresh.ts @@ -355,7 +355,6 @@ async function refreshReveal( `refreshes/${refreshSession.hash}/reveal`, refreshSession.exchangeBaseUrl, ); - logger.trace("reveal request:", req); let resp; try { @@ -366,9 +365,6 @@ async function refreshReveal( return; } - logger.trace("session:", refreshSession); - logger.trace("reveal response:", resp); - if (resp.status !== 200) { console.error("error: /refresh/reveal returned status " + resp.status); return; diff --git a/src/operations/withdraw.ts b/src/operations/withdraw.ts index 8e40a953f..7c079dc4d 100644 --- a/src/operations/withdraw.ts +++ b/src/operations/withdraw.ts @@ -361,16 +361,10 @@ export async function getVerifiedWithdrawDenomList( for (const denomSel of selectedDenoms.selectedDenoms) { const denom = denomSel.denom; if (denom.status === DenominationStatus.Unverified) { - console.log( - "checking validity", - denom, - exchangeDetails.masterPublicKey, - ); const valid = await ws.cryptoApi.isValidDenom( denom, exchangeDetails.masterPublicKey, ); - console.log("done checking validity"); if (!valid) { denom.status = DenominationStatus.VerifiedBad; allValid = false; -- cgit v1.2.3