remove debug log
This commit is contained in:
parent
1357271717
commit
4f7a130ebc
@ -4,8 +4,8 @@
|
||||
"name": "GNU Taler Wallet (git)",
|
||||
"description": "Privacy preserving and transparent payments",
|
||||
"author": "GNU Taler Developers",
|
||||
"version": "0.6.31",
|
||||
"version_name": "0.1.7",
|
||||
"version": "0.6.32",
|
||||
"version_name": "0.1.8",
|
||||
|
||||
"minimum_chrome_version": "49",
|
||||
"minimum_opera_version": "36",
|
||||
|
@ -316,7 +316,6 @@ class QueryStreamIndexJoinLeft<T, S> extends QueryStreamBase<JoinLeftResult<T, S
|
||||
f(true, undefined, tx);
|
||||
return;
|
||||
}
|
||||
console.log("joining on", this.key(value));
|
||||
const s = tx.objectStore(this.storeName).index(this.indexName);
|
||||
const req = s.openCursor(IDBKeyRange.only(this.key(value)));
|
||||
let gotMatch = false;
|
||||
@ -356,7 +355,6 @@ class QueryStreamKeyJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> {
|
||||
f(true, undefined, tx);
|
||||
return;
|
||||
}
|
||||
console.log("joining on", this.key(value));
|
||||
let s = tx.objectStore(this.storeName);
|
||||
let req = s.openCursor(IDBKeyRange.only(this.key(value)));
|
||||
req.onsuccess = () => {
|
||||
|
@ -45,12 +45,12 @@
|
||||
"src/background/background.ts",
|
||||
"src/content_scripts/notify.ts",
|
||||
"src/emscripten/taler-emscripten-lib.d.ts",
|
||||
"src/popup/popup.tsx",
|
||||
"src/pages/show-db.ts",
|
||||
"src/pages/confirm-contract.tsx",
|
||||
"src/pages/confirm-create-reserve.tsx",
|
||||
"src/pages/error.tsx",
|
||||
"src/pages/logs.tsx",
|
||||
"src/pages/tree.tsx",
|
||||
"src/popup/popup.tsx"
|
||||
"src/pages/tree.tsx"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user