diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-02-22 23:31:21 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-02-22 23:31:21 +0100 |
commit | 33abcfd4dcb7b11745e6c6fa6da1858943005708 (patch) | |
tree | 057fef38c9d983b7c31719a954525addd117cfa8 /extension/lib/wallet/wallet.ts | |
parent | 0ad69f120fbdd6df8e7e6e10e37b768907d29f7a (diff) |
remove excessive logging
Diffstat (limited to 'extension/lib/wallet/wallet.ts')
-rw-r--r-- | extension/lib/wallet/wallet.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/extension/lib/wallet/wallet.ts b/extension/lib/wallet/wallet.ts index 76339fe5d..67e35bd11 100644 --- a/extension/lib/wallet/wallet.ts +++ b/extension/lib/wallet/wallet.ts @@ -356,10 +356,6 @@ function getWithdrawDenomList(amountAvailable: AmountJson, denoms = denoms.filter(isWithdrawableDenom); denoms.sort((d1, d2) => Amounts.cmp(d2.value, d1.value)); - console.log("ranked denoms"); - console.dir(denoms); - - // This is an arbitrary number of coins // we can withdraw in one go. It's not clear if this limit // is useful ... @@ -376,7 +372,6 @@ function getWithdrawDenomList(amountAvailable: AmountJson, break; } if (!found) { - console.log("did not find coins for remaining ", remaining); break; } } @@ -561,7 +556,6 @@ export class Wallet { error: "coins-insufficient", }; } - console.log("about to record ..."); let mintUrl = Object.keys(mcs)[0]; return this.cryptoApi.signDeposit(offer, mcs[mintUrl]) @@ -848,8 +842,6 @@ export class Wallet { .map((d: Denomination) => Amounts.add(d.value, d.fee_withdraw).amount) .reduce((a, b) => Amounts.add(a, b).amount); - console.log("actual coin cost", actualCoinCost); - console.log("amount", amount); let ret: ReserveCreationInfo = { mintInfo, selectedDenoms, @@ -877,8 +869,6 @@ export class Wallet { return Query(this.db).get("mints", baseUrl).then((r) => { let mintInfo; - - console.log("got mints result"); console.dir(r); if (!r) { |