aboutsummaryrefslogtreecommitdiff
path: root/src/operations
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-11 18:19:43 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-11 18:19:43 +0530
commitd9433a2116541160ed82f6780116c1c70afe4e2f (patch)
treeded9ab549e3a93dfaf6902f61c1521e5e44114a7 /src/operations
parent5d6192b0cd356f7e56fa8d6193a2e74233a52f4b (diff)
downloadwallet-core-d9433a2116541160ed82f6780116c1c70afe4e2f.tar.xz
logging
Diffstat (limited to 'src/operations')
-rw-r--r--src/operations/refresh.ts4
-rw-r--r--src/operations/withdraw.ts6
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;