@meshsdk/core-csl 1.6.9 → 1.6.11
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -1058,7 +1058,7 @@ var CSLSerializer = class {
|
|
|
1058
1058
|
}
|
|
1059
1059
|
const txBuildResult = csl.js_serialize_tx_body(txBodyJson, params);
|
|
1060
1060
|
if (txBuildResult.get_status() !== "success") {
|
|
1061
|
-
throw new Error(txBuildResult.get_data());
|
|
1061
|
+
throw new Error(`txBuildResult error: ${txBuildResult.get_data()}`);
|
|
1062
1062
|
}
|
|
1063
1063
|
return txBuildResult.get_data();
|
|
1064
1064
|
}
|
package/dist/index.js
CHANGED
|
@@ -940,7 +940,7 @@ var CSLSerializer = class {
|
|
|
940
940
|
}
|
|
941
941
|
const txBuildResult = csl.js_serialize_tx_body(txBodyJson, params);
|
|
942
942
|
if (txBuildResult.get_status() !== "success") {
|
|
943
|
-
throw new Error(txBuildResult.get_data());
|
|
943
|
+
throw new Error(`txBuildResult error: ${txBuildResult.get_data()}`);
|
|
944
944
|
}
|
|
945
945
|
return txBuildResult.get_data();
|
|
946
946
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshsdk/core-csl",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.11",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@meshsdk/common": "*",
|
|
42
|
-
"@sidan-lab/sidan-csl-rs-browser": "0.7.
|
|
43
|
-
"@sidan-lab/sidan-csl-rs-nodejs": "0.7.
|
|
42
|
+
"@sidan-lab/sidan-csl-rs-browser": "0.7.5",
|
|
43
|
+
"@sidan-lab/sidan-csl-rs-nodejs": "0.7.5",
|
|
44
44
|
"json-bigint": "^1.0.0"
|
|
45
45
|
},
|
|
46
46
|
"prettier": "@meshsdk/configs/prettier",
|