@ocap/indexdb-fs 1.19.1 → 1.19.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/lib/db.js +1 -0
  2. package/package.json +5 -5
package/lib/db.js CHANGED
@@ -24,6 +24,7 @@ class FsIndexDB extends BaseIndexDB {
24
24
  this.rollup = new Table('rollup', dataDir, 'address');
25
25
  this.rollupBlock = new Table('rollupBlock', dataDir, 'hash');
26
26
  this.rollupValidator = new Table('rollupValidator', dataDir, 'address');
27
+ this.tokenDistribution = new Table('tokenDistribution', dataDir, 'tokenAddress');
27
28
 
28
29
  this.attachReadyListeners();
29
30
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ocap/indexdb-fs",
3
3
  "description": "OCAP indexdb adapter that uses file system as backend",
4
- "version": "1.19.1",
4
+ "version": "1.19.3",
5
5
  "author": "wangshijun <shijun@arcblock.io> (https://www.arcblock.io)",
6
6
  "bugs": {
7
7
  "url": "https://github.com/ArcBlock/blockchain/issues",
@@ -37,11 +37,11 @@
37
37
  "test": "jest --forceExit --detectOpenHandles",
38
38
  "coverage": "npm run test -- --coverage"
39
39
  },
40
- "gitHead": "21184488172c6c824ebd1714f728ff2aee4a3ac0",
40
+ "gitHead": "756076dad0df7468beecc95c8effd55f8c4c4f49",
41
41
  "dependencies": {
42
- "@ocap/indexdb": "1.19.1",
43
- "@ocap/indexdb-memory": "1.19.1",
44
- "@ocap/util": "1.19.1",
42
+ "@ocap/indexdb": "1.19.3",
43
+ "@ocap/indexdb-memory": "1.19.3",
44
+ "@ocap/util": "1.19.3",
45
45
  "debug": "^4.3.6",
46
46
  "lodash": "^4.17.21",
47
47
  "lokijs": "^1.5.12"