aboutsummaryrefslogtreecommitdiff
path: root/src/webex/notify.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webex/notify.ts')
-rw-r--r--src/webex/notify.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/webex/notify.ts b/src/webex/notify.ts
index 81bc6808d..2f38658bd 100644
--- a/src/webex/notify.ts
+++ b/src/webex/notify.ts
@@ -280,7 +280,8 @@ async function processProposal(proposal: any) {
const contractHash = await wxApi.hashContract(proposal.data);
if (contractHash !== proposal.hash) {
- console.error("merchant-supplied contract hash is wrong");
+ console.error(`merchant-supplied contract hash is wrong (us: ${contractHash}, merchant: ${proposal.hash})`);
+ console.dir(proposal.data);
return;
}
@@ -301,12 +302,11 @@ async function processProposal(proposal: any) {
type: "offer-contract",
};
await wxApi.putHistory(historyEntry);
- const offerId = await wxApi.saveOffer(proposal);
+ let proposalId = await wxApi.saveProposal(proposal);
- const uri = new URI(chrome.extension.getURL(
- "/src/webex/pages/confirm-contract.html"));
+ const uri = new URI(chrome.extension.getURL("/src/webex/pages/confirm-contract.html"));
const params = {
- offerId: offerId.toString(),
+ proposalId: proposalId.toString(),
};
const target = uri.query(params).href();
document.location.replace(target);