@ocap/tx-protocols 1.18.28 → 1.18.31

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.
@@ -91,7 +91,7 @@ runner.use(async (context, next) => {
91
91
  const { statedb, itx } = context;
92
92
  const exist = await statedb.rollup.existByToken(itx.tokenAddress, context);
93
93
  if (exist) {
94
- return next(new Error('DUPLICATE_ROLLUP', 'Only 1 rollup can be created for the token'));
94
+ return next(new Error('DUPLICATE_ROLLUP', 'Only 1 active rollup can be created for the token'));
95
95
  }
96
96
 
97
97
  return next();
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.18.28",
6
+ "version": "1.18.31",
7
7
  "description": "Predefined tx pipeline sets to execute certain type of transactions",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -21,18 +21,18 @@
21
21
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@arcblock/did": "1.18.28",
25
- "@arcblock/did-util": "1.18.28",
26
- "@arcblock/jwt": "1.18.28",
27
- "@arcblock/validator": "1.18.28",
28
- "@ocap/asset": "1.18.28",
29
- "@ocap/mcrypto": "1.18.28",
30
- "@ocap/merkle-tree": "1.18.28",
31
- "@ocap/message": "1.18.28",
32
- "@ocap/state": "1.18.28",
33
- "@ocap/tx-pipeline": "1.18.28",
34
- "@ocap/util": "1.18.28",
35
- "@ocap/wallet": "1.18.28",
24
+ "@arcblock/did": "1.18.31",
25
+ "@arcblock/did-util": "1.18.31",
26
+ "@arcblock/jwt": "1.18.31",
27
+ "@arcblock/validator": "1.18.31",
28
+ "@ocap/asset": "1.18.31",
29
+ "@ocap/mcrypto": "1.18.31",
30
+ "@ocap/merkle-tree": "1.18.31",
31
+ "@ocap/message": "1.18.31",
32
+ "@ocap/state": "1.18.31",
33
+ "@ocap/tx-pipeline": "1.18.31",
34
+ "@ocap/util": "1.18.31",
35
+ "@ocap/wallet": "1.18.31",
36
36
  "debug": "^4.3.4",
37
37
  "deep-diff": "^1.0.2",
38
38
  "empty-value": "^1.0.1",
@@ -47,5 +47,5 @@
47
47
  "jest": "^27.5.1",
48
48
  "start-server-and-test": "^1.14.0"
49
49
  },
50
- "gitHead": "b3d8d50ccf3b876b07b8f3eaf09572329ea6af94"
50
+ "gitHead": "ad152eeee0cdfa5486b50f6151a9a05245804109"
51
51
  }