ripple-binary-codec 1.7.1 → 1.8.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ripple-binary-codec",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "XRP Ledger binary codec",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/*",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">= 10"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "002ec77218440b49eaea13e407aaca450ac29f2e"
|
|
44
44
|
}
|
package/test/definitions.test.js
CHANGED
|
@@ -21,7 +21,7 @@ describe('encode and decode using new types as a parameter', function () {
|
|
|
21
21
|
// Normally this would be generated directly from rippled with something like `server_definitions`.
|
|
22
22
|
// Added here to make it easier to see what is actually changing in the definitions.json file.
|
|
23
23
|
const definitions = JSON.parse(JSON.stringify(normalDefinitionsJson))
|
|
24
|
-
definitions.TRANSACTION_TYPES['NewTestTransaction'] =
|
|
24
|
+
definitions.TRANSACTION_TYPES['NewTestTransaction'] = 75
|
|
25
25
|
|
|
26
26
|
const newDefs = new XrplDefinitions(definitions)
|
|
27
27
|
|