remove bad logging
This commit is contained in:
parent
fab098c8e7
commit
79d32c9c1b
@ -54,7 +54,6 @@ export function main(worker: Worker) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("hello, this is the crypto lib");
|
|
||||||
|
|
||||||
namespace RpcFunctions {
|
namespace RpcFunctions {
|
||||||
|
|
||||||
|
@ -54,12 +54,8 @@ if ("object" !== typeof Module) {
|
|||||||
System.import("./cryptoLib")
|
System.import("./cryptoLib")
|
||||||
.then((m) => {
|
.then((m) => {
|
||||||
m.main(self);
|
m.main(self);
|
||||||
console.log("loaded");
|
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
console.log("crypto worker failed");
|
console.log("crypto worker failed");
|
||||||
console.error(e.stack);
|
console.error(e.stack);
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("in worker thread");
|
|
||||||
|
|
||||||
|
@ -955,7 +955,6 @@ export class Wallet {
|
|||||||
let r = await Query(this.db).get("exchanges", baseUrl);
|
let r = await Query(this.db).get("exchanges", baseUrl);
|
||||||
|
|
||||||
let exchangeInfo: IExchangeInfo;
|
let exchangeInfo: IExchangeInfo;
|
||||||
console.dir(r);
|
|
||||||
|
|
||||||
if (!r) {
|
if (!r) {
|
||||||
exchangeInfo = {
|
exchangeInfo = {
|
||||||
|
Loading…
Reference in New Issue
Block a user