@ocap/tx-pipeline 1.20.2 → 1.20.4
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.
- package/README.md +1 -1
- package/lib/pipes/verify-signature.js +1 -1
- package/package.json +22 -20
package/README.md
CHANGED
@@ -35,7 +35,7 @@ module.exports = async function VerifySignature(context, next) {
|
|
35
35
|
return next(new Error('INVALID_SIGNATURE', 'tx.signature is invalid'));
|
36
36
|
}
|
37
37
|
} catch (err) {
|
38
|
-
console.error(err);
|
38
|
+
console.error('tx.signature verify failed', err);
|
39
39
|
return next(new Error('INVALID_SIGNATURE', 'tx.signature verify failed'));
|
40
40
|
}
|
41
41
|
|
package/package.json
CHANGED
@@ -3,42 +3,44 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.20.
|
6
|
+
"version": "1.20.4",
|
7
7
|
"description": "Pipeline runner and common pipelines to process transactions",
|
8
8
|
"main": "lib/index.js",
|
9
9
|
"files": [
|
10
10
|
"lib"
|
11
11
|
],
|
12
|
-
"scripts": {
|
13
|
-
"lint": "eslint tests lib",
|
14
|
-
"lint:fix": "eslint --fix tests lib",
|
15
|
-
"start": "node tools/start-chain.js",
|
16
|
-
"test": "jest --forceExit --detectOpenHandles",
|
17
|
-
"test:ci": "jest --forceExit --detectOpenHandles --coverage",
|
18
|
-
"coverage": "start-server-and-test start http://127.0.0.1:4002 test:ci"
|
19
|
-
},
|
20
12
|
"keywords": [],
|
21
13
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
22
14
|
"license": "MIT",
|
23
15
|
"devDependencies": {
|
24
16
|
"jest": "^29.7.0",
|
25
|
-
"start-server-and-test": "^1.14.0"
|
17
|
+
"start-server-and-test": "^1.14.0",
|
18
|
+
"@ocap/e2e-test": "1.20.4"
|
26
19
|
},
|
27
20
|
"resolutions": {
|
28
21
|
"bn.js": "5.2.1",
|
29
22
|
"elliptic": "6.5.3"
|
30
23
|
},
|
31
24
|
"dependencies": {
|
32
|
-
"@arcblock/did": "1.20.2",
|
33
|
-
"@arcblock/did-util": "1.20.2",
|
34
|
-
"@ocap/mcrypto": "1.20.2",
|
35
|
-
"@ocap/message": "1.20.2",
|
36
|
-
"@ocap/state": "1.20.2",
|
37
|
-
"@ocap/util": "1.20.2",
|
38
|
-
"@ocap/wallet": "1.20.2",
|
39
25
|
"debug": "^4.3.6",
|
40
26
|
"empty-value": "^1.0.1",
|
41
|
-
"lodash": "^4.17.21"
|
27
|
+
"lodash": "^4.17.21",
|
28
|
+
"@arcblock/did": "1.20.4",
|
29
|
+
"@arcblock/did-util": "1.20.4",
|
30
|
+
"@ocap/mcrypto": "1.20.4",
|
31
|
+
"@ocap/message": "1.20.4",
|
32
|
+
"@ocap/state": "1.20.4",
|
33
|
+
"@ocap/util": "1.20.4",
|
34
|
+
"@ocap/client": "1.20.4",
|
35
|
+
"@ocap/wallet": "1.20.4",
|
36
|
+
"@ocap/statedb-memory": "1.20.4"
|
42
37
|
},
|
43
|
-
"
|
44
|
-
|
38
|
+
"scripts": {
|
39
|
+
"lint": "eslint tests lib",
|
40
|
+
"lint:fix": "eslint --fix tests lib",
|
41
|
+
"start": "node tools/start-chain.js",
|
42
|
+
"test": "jest --forceExit --detectOpenHandles",
|
43
|
+
"test:ci": "jest --forceExit --detectOpenHandles --coverage",
|
44
|
+
"coverage": "start-server-and-test start http://127.0.0.1:4003 test:ci"
|
45
|
+
}
|
46
|
+
}
|