aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index c73af9062..bbeaca601 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -2355,7 +2355,7 @@ export class Wallet {
tx.iter(Stores.reserves).fold(collectPaybacks, balanceStore);
tx.iter(Stores.purchases).fold(collectPayments, balanceStore);
await tx.finish();
- console.log("computed balances:", balanceStore)
+ Wallet.enableTracing && console.log("computed balances:", balanceStore)
return balanceStore;
}