aboutsummaryrefslogtreecommitdiff
path: root/src/wxBackend.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-02-14 19:45:22 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-02-16 23:21:55 +0100
commit93e3d52735b35a0b5405ed774a5bf0dbc8d8e8f2 (patch)
treeed35d024b8fa99eebe10058ebae29e0e8af56b2e /src/wxBackend.ts
parentaf6843a2aa9c0e35d5d400adc85c51af83673eeb (diff)
downloadwallet-core-93e3d52735b35a0b5405ed774a5bf0dbc8d8e8f2.tar.xz
remove repurchase correlation id
Diffstat (limited to 'src/wxBackend.ts')
-rw-r--r--src/wxBackend.ts6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/wxBackend.ts b/src/wxBackend.ts
index cdc8f4392..5957e1e1b 100644
--- a/src/wxBackend.ts
+++ b/src/wxBackend.ts
@@ -35,7 +35,7 @@ import * as logging from "./logging";
"use strict";
const DB_NAME = "taler";
-const DB_VERSION = 14;
+const DB_VERSION = 15;
import {Stores} from "./wallet";
import {Store, Index} from "./query";
@@ -194,10 +194,6 @@ function makeHandlers(db: IDBDatabase,
let amount = AmountJson.checked(detail.amount);
return wallet.getReserveCreationInfo(detail.baseUrl, amount);
},
- ["check-repurchase"]: function (detail, sender) {
- let contract = Contract.checked(detail.contract);
- return wallet.checkRepurchase(contract);
- },
["get-history"]: function (detail, sender) {
// TODO: limit history length
return wallet.getHistory();