@ocap/indexdb 1.13.65 → 1.13.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/util.js +3 -0
  2. package/package.json +4 -4
package/lib/util.js CHANGED
@@ -130,6 +130,9 @@ const createIndexedTransaction = (tx, ctx) => {
130
130
  if (ctx.receiverState) {
131
131
  tx.accounts.push(ctx.receiverState.address);
132
132
  }
133
+ if (ctx.vaultState) {
134
+ tx.accounts.push(ctx.vaultState.address);
135
+ }
133
136
  if (ctx.updatedAccounts && Array.isArray(ctx.updatedAccounts)) {
134
137
  tx.accounts.push(...ctx.updatedAccounts.map((x) => x.address));
135
138
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.13.65",
6
+ "version": "1.13.69",
7
7
  "description": "Defines the basic interface for OCAP IndexDB",
8
8
  "main": "lib/main.js",
9
9
  "files": [
@@ -22,10 +22,10 @@
22
22
  "jest": "^27.3.1"
23
23
  },
24
24
  "dependencies": {
25
- "@ocap/state": "1.13.65",
26
- "@ocap/util": "1.13.65",
25
+ "@ocap/state": "1.13.69",
26
+ "@ocap/util": "1.13.69",
27
27
  "kareem": "^2.3.2",
28
28
  "lodash": "^4.17.21"
29
29
  },
30
- "gitHead": "4011996e1800845142aa5c889b58726129a99ec3"
30
+ "gitHead": "7520d994d592dc4fe50612a665c94d7fa4d5b143"
31
31
  }