aboutsummaryrefslogtreecommitdiff
path: root/src/webex/wxBackend.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webex/wxBackend.ts')
-rw-r--r--src/webex/wxBackend.ts12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/webex/wxBackend.ts b/src/webex/wxBackend.ts
index 16da3d97d..e7f571b92 100644
--- a/src/webex/wxBackend.ts
+++ b/src/webex/wxBackend.ts
@@ -177,19 +177,9 @@ function handleMessage(sender: MessageSender,
return hash;
});
}
- case "put-history-entry": {
- if (!detail.historyEntry) {
- return Promise.resolve({ error: "historyEntry missing" });
- }
- return needsWallet().putHistory(detail.historyEntry);
- }
case "save-proposal": {
console.log("handling save-proposal", detail);
- const checkedRecord = ProposalRecord.checked({
- contractTerms: detail.data,
- contractTermsHash: detail.hash,
- merchantSig: detail.sig,
- });
+ const checkedRecord = ProposalRecord.checked(detail.proposal);
return needsWallet().saveProposal(checkedRecord);
}
case "reserve-creation-info": {