aboutsummaryrefslogtreecommitdiff
path: root/src/operations/withdraw.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-12 16:04:28 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-12 16:04:28 +0530
commitee7141e28b482c9655e0b78052ead0f2b5ed5d05 (patch)
treeb24f0aa4bda85b4e68236231d14e05d2ebc747d8 /src/operations/withdraw.ts
parentb504a5218ad99c04de8077f222747334f53d6ac0 (diff)
downloadwallet-core-ee7141e28b482c9655e0b78052ead0f2b5ed5d05.tar.xz
fix payment transaction
Diffstat (limited to 'src/operations/withdraw.ts')
-rw-r--r--src/operations/withdraw.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/operations/withdraw.ts b/src/operations/withdraw.ts
index e1c4ed57c..977d998fd 100644
--- a/src/operations/withdraw.ts
+++ b/src/operations/withdraw.ts
@@ -91,7 +91,6 @@ export function getWithdrawDenomList(
denoms.sort((d1, d2) => Amounts.cmp(d2.value, d1.value));
for (const d of denoms) {
- console.log("considering denom", d);
let count = 0;
const cost = Amounts.add(d.value, d.feeWithdraw).amount;
for (;;) {