diff options
Diffstat (limited to 'extension/background/wallet.js')
-rw-r--r-- | extension/background/wallet.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/extension/background/wallet.js b/extension/background/wallet.js index 9f62c29f5..fc84fdfb0 100644 --- a/extension/background/wallet.js +++ b/extension/background/wallet.js @@ -201,13 +201,6 @@ function executePay(db, offer, payCoinInfo, merchantBaseUrl, chosenMint) { }); } function confirmPay(db, detail, sendResponse) { - console.log("confirmPay", JSON.stringify(detail)); - let tx = db.transaction(['transactions'], 'readwrite'); - let trans = { - contractHash: detail.offer.H_contract, - contract: detail.offer.contract, - sig: detail.offer - }; let offer = detail.offer; getPossibleMintCoins(db, offer.contract.amount, offer.contract.max_fee, offer.contract.mints) .then((mcs) => { |