diff options
Diffstat (limited to 'extension/background')
-rw-r--r-- | extension/background/wallet.js | 1 | ||||
-rw-r--r-- | extension/background/wallet.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/extension/background/wallet.js b/extension/background/wallet.js index a8e62abdf..2c8c11f33 100644 --- a/extension/background/wallet.js +++ b/extension/background/wallet.js @@ -199,6 +199,7 @@ function doPayment(db, detail, sendResponse) { let req = db.transaction(['transactions']).objectStore("transactions").get(H_contract); console.log("executing contract", H_contract); req.onsuccess = (e) => { + console.log("got db response for existing contract"); if (!req.result) { sendResponse({ success: false, error: "contract not found" }); return; diff --git a/extension/background/wallet.ts b/extension/background/wallet.ts index fa26ba1d2..bda4da30d 100644 --- a/extension/background/wallet.ts +++ b/extension/background/wallet.ts @@ -303,6 +303,7 @@ function doPayment(db, detail, sendResponse) { let req = db.transaction(['transactions']).objectStore("transactions").get(H_contract); console.log("executing contract", H_contract); req.onsuccess = (e) => { + console.log("got db response for existing contract"); if (!req.result) { sendResponse({success: false, error: "contract not found"}); return; |