@ocap/state 1.18.155 → 1.18.157
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/lib/states/tx.js +1 -1
- package/package.json +9 -9
package/lib/states/tx.js
CHANGED
|
@@ -634,7 +634,7 @@ const getTxReceipts = ({ tx, code }, ctx = {}) => {
|
|
|
634
634
|
receipts = receipts.concat(getWithdrawTokenReceipts(tx, ctx));
|
|
635
635
|
} else if (['SetupSwapTx'].includes(typeUrl)) {
|
|
636
636
|
receipts = receipts.concat(getSetupSwapReceipts(tx, ctx));
|
|
637
|
-
} else if (['RetrieveSwapTx'].includes(typeUrl)) {
|
|
637
|
+
} else if (['RetrieveSwapTx', 'RevokeSwapTx'].includes(typeUrl)) {
|
|
638
638
|
receipts = receipts.concat(getRetrieveSwapReceipts(tx, ctx));
|
|
639
639
|
} else if (['StakeTx'].includes(typeUrl)) {
|
|
640
640
|
receipts = receipts.concat(getStakeReceipts(tx, ctx));
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.18.
|
|
6
|
+
"version": "1.18.157",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"coverage": "start-server-and-test start http://127.0.0.1:4001 test:ci"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcblock/did": "1.18.
|
|
22
|
-
"@arcblock/validator": "1.18.
|
|
23
|
-
"@ocap/contract": "1.18.
|
|
24
|
-
"@ocap/mcrypto": "1.18.
|
|
25
|
-
"@ocap/message": "1.18.
|
|
26
|
-
"@ocap/util": "1.18.
|
|
27
|
-
"@ocap/wallet": "1.18.
|
|
21
|
+
"@arcblock/did": "1.18.157",
|
|
22
|
+
"@arcblock/validator": "1.18.157",
|
|
23
|
+
"@ocap/contract": "1.18.157",
|
|
24
|
+
"@ocap/mcrypto": "1.18.157",
|
|
25
|
+
"@ocap/message": "1.18.157",
|
|
26
|
+
"@ocap/util": "1.18.157",
|
|
27
|
+
"@ocap/wallet": "1.18.157",
|
|
28
28
|
"bloom-filters": "^1.3.9",
|
|
29
29
|
"lodash": "^4.17.21"
|
|
30
30
|
},
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"keywords": [],
|
|
36
36
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
37
37
|
"license": "MIT",
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "df2103bb05ee43fdb6b530e05ce608c574fdd5d6"
|
|
39
39
|
}
|