-
Notifications
You must be signed in to change notification settings - Fork 21
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
Change API field naming style to Camel Case. #164
Change API field naming style to Camel Case. #164
Conversation
@@ -131,8 +131,8 @@ func (l *LedgerEntryChange) FromXDRDiff(diff preflight.XDRDiff) error { | |||
return nil | |||
} | |||
|
|||
// LedgerEntryChange designates a change in a ledger entry. Before and After cannot be be omitted at the same time. | |||
// If Before is omitted, it constitutes a creation, if After is omitted, it constitutes a delation. | |||
// LedgerEntryChange designates a change in a ledger entry. Before and After cannot be omitted at the same time. |
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.
Correct the typo here by the way.
Sadly, this is now a breaking change because we already released getVersionInfo endpoint https://github.com/stellar/soroban-rpc/releases/tag/v21.1.0 -- so now this change should go in next protocol bump just fyi |
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.
LGTM !!
@Shaptic are there downstream tickets to fix this? |
@janewang When would it be a good time to release this? (considering it's a breaking change) |
Not yet, since the answer is dependent on the release cycle (unfortunately I think we'd have to wait until Protocol 22 as it means breaking releases for all of the SDKs). |
+1, Protocol 22 is the time |
What
Change API field naming style to Camel Case.
Why
Other APIs all use Camel Case style, let's keep it consistent.
Known limitations
[TODO or N/A]