remove more bad logging

This commit is contained in:
Florian Dold 2019-11-14 17:22:29 +01:00
parent 52f162a3ef
commit 25c68d4487
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 1 additions and 2 deletions

View File

@ -203,7 +203,6 @@ export function installAndroidWalletListener() {
}
const respMsg = { result, id, operation, type: "response" };
console.log("sending message back", respMsg);
sendMessage(JSON.stringify(respMsg));
};
// @ts-ignore

View File

@ -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;
}