diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-13 10:17:39 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-13 10:17:39 +0100 |
commit | eb84d5747aac0de781d64fb9cdbf2da13006d85e (patch) | |
tree | 387d7711e177d151a185e2a9a870c39cc03926ce /lib/wallet/db.ts | |
parent | b2128609ac8159a14224deba399144b3400c8c20 (diff) |
fix small react issues
Diffstat (limited to 'lib/wallet/db.ts')
-rw-r--r-- | lib/wallet/db.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wallet/db.ts b/lib/wallet/db.ts index d4ae1cd48..9cffc164c 100644 --- a/lib/wallet/db.ts +++ b/lib/wallet/db.ts @@ -26,7 +26,7 @@ import {IExchangeInfo} from "./types"; */ const DB_NAME = "taler"; -const DB_VERSION = 10; +const DB_VERSION = 11; import {Stores} from "./wallet"; import {Store, Index} from "./query"; @@ -114,4 +114,4 @@ export function exportDb(db: IDBDatabase): Promise<any> { export function deleteDb() { indexedDB.deleteDatabase(DB_NAME); -}
\ No newline at end of file +} |