diff options
Diffstat (limited to 'src/operations')
-rw-r--r-- | src/operations/refresh.ts | 4 | ||||
-rw-r--r-- | src/operations/withdraw.ts | 6 |
2 files changed, 0 insertions, 10 deletions
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; |