diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wallet/cryptoLib.ts | 1 | ||||
-rw-r--r-- | lib/wallet/cryptoWorker.ts | 6 | ||||
-rw-r--r-- | lib/wallet/wallet.ts | 1 |
3 files changed, 1 insertions, 7 deletions
diff --git a/lib/wallet/cryptoLib.ts b/lib/wallet/cryptoLib.ts index 1ca7b856f..b74e82bd7 100644 --- a/lib/wallet/cryptoLib.ts +++ b/lib/wallet/cryptoLib.ts @@ -54,7 +54,6 @@ export function main(worker: Worker) { } } -console.log("hello, this is the crypto lib"); namespace RpcFunctions { diff --git a/lib/wallet/cryptoWorker.ts b/lib/wallet/cryptoWorker.ts index c4c467d2c..4483c64e6 100644 --- a/lib/wallet/cryptoWorker.ts +++ b/lib/wallet/cryptoWorker.ts @@ -54,12 +54,8 @@ if ("object" !== typeof Module) { System.import("./cryptoLib") .then((m) => { m.main(self); - console.log("loaded"); }) .catch((e) => { console.log("crypto worker failed"); console.error(e.stack); - }); - -console.log("in worker thread"); - + });
\ No newline at end of file diff --git a/lib/wallet/wallet.ts b/lib/wallet/wallet.ts index 4595abe4a..951e0728a 100644 --- a/lib/wallet/wallet.ts +++ b/lib/wallet/wallet.ts @@ -955,7 +955,6 @@ export class Wallet { let r = await Query(this.db).get("exchanges", baseUrl); let exchangeInfo: IExchangeInfo; - console.dir(r); if (!r) { exchangeInfo = { |