diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-01-06 15:39:22 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-01-06 15:39:22 +0100 |
commit | abf15268acafe588191fffb7ca6ddb963244bb0f (patch) | |
tree | 0f582386d09eccd550c414e62337a7f630b2ddb1 /extension/background/db.js | |
parent | 2f8aa00595ab40292019ca739041296c84703899 (diff) |
Refactor wallet into logic and extension interface.
Diffstat (limited to 'extension/background/db.js')
-rw-r--r-- | extension/background/db.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extension/background/db.js b/extension/background/db.js index 4b81555da..8abf56b48 100644 --- a/extension/background/db.js +++ b/extension/background/db.js @@ -42,6 +42,7 @@ function openTalerDb() { coins.createIndex("mintBaseUrl", "mintBaseUrl"); db.createObjectStore("transactions", { keyPath: "contractHash" }); db.createObjectStore("precoins", { keyPath: "coinPub", autoIncrement: true }); + db.createObjectStore("history", { keyPath: "id", autoIncrement: true }); break; } }; |