Skip to content

Commit 691bd36

Browse files
authored
Merge branch 'main' into update-actions
2 parents 89eadb1 + c2dd2ed commit 691bd36

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

.coderabbit.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ reviews:
1313
review_status: true
1414
# Generate walkthrough in a markdown collapsible section.
1515
collapse_walkthrough: false
16+
# Generate sequence diagrams in the walkthrough.
17+
sequence_diagrams: false
1618
# Abort the in-progress review if the pull request is closed or merged.
1719
abort_on_close: true
1820
auto_review:

package-lock.json

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ripple-binary-codec/test/signing-data-encoding.test.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ describe('Signing data', function () {
7373
const customPaymentDefinitions = JSON.parse(
7474
JSON.stringify(normalDefinitions),
7575
)
76-
customPaymentDefinitions.TRANSACTION_TYPES.Payment = 31
76+
77+
// custom number would need to updated in case it has been used by an existing transaction type
78+
customPaymentDefinitions.TRANSACTION_TYPES.Payment = 200
7779

7880
const newDefs = new XrplDefinitions(customPaymentDefinitions)
7981
const actual = encodeForSigning(tx_json, newDefs)
@@ -82,7 +84,7 @@ describe('Signing data', function () {
8284
'53545800', // signingPrefix
8385
// TransactionType
8486
'12',
85-
'001F',
87+
'00C8',
8688
// Flags
8789
'22',
8890
'80000000',
@@ -176,7 +178,9 @@ describe('Signing data', function () {
176178
const customPaymentDefinitions = JSON.parse(
177179
JSON.stringify(normalDefinitions),
178180
)
179-
customPaymentDefinitions.TRANSACTION_TYPES.Payment = 31
181+
182+
// custom number would need to updated in case it has been used by an existing transaction type
183+
customPaymentDefinitions.TRANSACTION_TYPES.Payment = 200
180184

181185
const newDefs = new XrplDefinitions(customPaymentDefinitions)
182186
const signingAccount = 'rJZdUusLDtY9NEsGea7ijqhVrXv98rYBYN'
@@ -187,7 +191,7 @@ describe('Signing data', function () {
187191
'534D5400', // signingPrefix
188192
// TransactionType
189193
'12',
190-
'001F',
194+
'00C8',
191195
// Flags
192196
'22',
193197
'80000000',

packages/xrpl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"lodash": "^4.17.4",
4444
"react": "^18.2.0",
4545
"run-s": "^0.0.0",
46-
"typedoc": "0.26.10",
46+
"typedoc": "0.26.11",
4747
"ws": "^8.14.2"
4848
},
4949
"resolutions": {

0 commit comments

Comments
 (0)