gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: remove some printf debugging


From: gnunet
Subject: [taler-wallet-core] branch master updated: remove some printf debugging
Date: Mon, 20 Jul 2020 09:16:10 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new e3135213 remove some printf debugging
e3135213 is described below

commit e3135213fcad72d442a268e2fa78dfec6b88faf5
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Mon Jul 20 12:44:47 2020 +0530

    remove some printf debugging
---
 src/operations/withdraw.ts | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/operations/withdraw.ts b/src/operations/withdraw.ts
index d55198e6..b602aa12 100644
--- a/src/operations/withdraw.ts
+++ b/src/operations/withdraw.ts
@@ -96,8 +96,6 @@ export function getWithdrawDenomList(
   denoms = denoms.filter(isWithdrawableDenom);
   denoms.sort((d1, d2) => Amounts.cmp(d2.value, d1.value));
 
-  console.log("start remaining is", Amounts.stringify(remaining));
-
   for (const d of denoms) {
     let count = 0;
     const cost = Amounts.add(d.value, d.feeWithdraw).amount;
@@ -107,10 +105,8 @@ export function getWithdrawDenomList(
         break;
       }
       remaining = Amounts.sub(remaining, cost).amount;
-      console.log("remaining is", Amounts.stringify(remaining));
       count++;
     }
-    console.log("count is", count);
     if (count > 0) {
       totalCoinValue = Amounts.add(
         totalCoinValue,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]