-
Notifications
You must be signed in to change notification settings - Fork 123
fix: better formatting handling in definitions script #879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -680,6 +680,16 @@ | |
| "type": "UInt32" | ||
| } | ||
| ], | ||
| [ | ||
| "MutableFlags", | ||
| { | ||
| "isSerialized": true, | ||
| "isSigningField": true, | ||
| "isVLEncoded": false, | ||
| "nth": 53, | ||
| "type": "UInt32" | ||
| } | ||
| ], | ||
| [ | ||
| "IndexNext", | ||
| { | ||
|
|
@@ -2130,6 +2140,16 @@ | |
| "type": "Number" | ||
| } | ||
| ], | ||
| [ | ||
| "DummyInt32", | ||
| { | ||
| "isSerialized": true, | ||
| "isSigningField": true, | ||
| "isVLEncoded": false, | ||
| "nth": 1, | ||
| "type": "Int32" | ||
| } | ||
| ], | ||
| [ | ||
| "TransactionMetaData", | ||
| { | ||
|
|
@@ -3276,7 +3296,6 @@ | |
| "terLAST": -91, | ||
| "terNO_ACCOUNT": -96, | ||
| "terNO_AMM": -87, | ||
| "tedADDRESS_COLLISION": -86, | ||
| "terNO_AUTH": -95, | ||
| "terNO_LINE": -94, | ||
| "terNO_RIPPLE": -90, | ||
|
|
@@ -3342,10 +3361,10 @@ | |
| "TicketCreate": 10, | ||
| "TrustSet": 20, | ||
| "UNLModify": 102, | ||
| "VaultCreate": 65, | ||
| "VaultClawback": 70, | ||
| "VaultDeposit": 68, | ||
| "VaultCreate": 65, | ||
| "VaultDelete": 67, | ||
| "VaultDeposit": 68, | ||
| "VaultSet": 66, | ||
| "VaultWithdraw": 69, | ||
| "XChainAccountCreateCommit": 44, | ||
|
|
@@ -3367,6 +3386,8 @@ | |
| "Hash160": 17, | ||
| "Hash192": 21, | ||
| "Hash256": 5, | ||
| "Int32": 10, | ||
| "Int64": 11, | ||
|
Comment on lines
+3389
to
+3390
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I got this comment from coderabbit when I added these two lines in my PR. Is the comment valid and should we remove these two lines?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not the only SType that isn't included in the codec, if you take a look at the full list. It doesn't matter as long as there are no fields that use the SType (which there aren't). |
||
| "Issue": 24, | ||
| "LedgerEntry": 10002, | ||
| "Metadata": 10004, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.