-
Notifications
You must be signed in to change notification settings - Fork 538
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
fix(rbc): throw error instead of throwing away unknown fields #2927
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThe changes introduce a new function, Changes
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
f !== undefined && | ||
xAddressDecoded[f.name] !== undefined && | ||
f.isSerialized, | ||
function isValidFieldInstance( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function is needed for typing
High Level Overview of Change
This PR fixes an issue in ripple-binary-codec to throw an error instead of silently throwing away unknown fields and their values when serializing transactions.
It only errors on
CapitalizedFields
and still silently ignoreslowercaseFields
, as the latter are likely from copy-pastingtx
outputs or something, rather than an actual error (since all rippled fields must be Capitalized).Context of Change
I came across this issue when working on a separate PR for a new feature, where my tests would fail for unknown reasons. I had to go into the rippled logs and decode the transaction rippled was receiving to figure out what was happening.
Type of Change
Did you update HISTORY.md?
Test Plan
Added a test to make sure this works properly, and fixed existing tests that had the previous assumption.