From 63ebe1b2e296aabb79cb1756d5dfc82c1ba4fe02 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 9 Jul 2020 18:56:18 +0530 Subject: android APIs for withdrawal and exchange listing --- src/db.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/db.ts') diff --git a/src/db.ts b/src/db.ts index 197372024..072b7844e 100644 --- a/src/db.ts +++ b/src/db.ts @@ -7,7 +7,7 @@ import { openDatabase, Database, Store, Index } from "./util/query"; * with each major change. When incrementing the major version, * the wallet should import data from the previous version. */ -const TALER_DB_NAME = "taler-walletdb-v4"; +const TALER_DB_NAME = "taler-walletdb-v5"; /** * Current database minor version, should be incremented @@ -16,7 +16,7 @@ const TALER_DB_NAME = "taler-walletdb-v4"; * backwards-compatible way or object stores and indices * are added. */ -export const WALLET_DB_VERSION = 1; +export const WALLET_DB_MINOR_VERSION = 1; /** * Return a promise that resolves @@ -54,7 +54,7 @@ export function openTalerDatabase( return openDatabase( idbFactory, TALER_DB_NAME, - WALLET_DB_VERSION, + WALLET_DB_MINOR_VERSION, onVersionChange, onUpgradeNeeded, ); -- cgit v1.2.3