-
Notifications
You must be signed in to change notification settings - Fork 87
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
Remove deprecated full
parameter from ledger request model
#722
Conversation
full
parameter from ledger request model
Please update the changelog. |
@mvadari updated the changelog! thanks for the reminder |
so, does this mean everyone using xrpl-py needs to upgrade immediately ? (seems like a breaking change by clio)
|
I'm not quite sure if this is relevant I've manually modified the above file on my xrpl-py pip release on my device and even cloned the repository in place of the current xrpl-py release on pip. Both times I got an error that said I modified again the above file to remove the |
@angelmacm thanks for flagging, I think it is similar in that the The deprecated fields are described here https://xrpl.org/docs/references/http-websocket-apis/public-api-methods/ledger-methods/ledger/
|
High Level Overview of Change
Remove deprecated full parameter from ledger request model
Context of Change
In the
ledger
API, thefull
request parameter has been deprecated for quite awhile now. As of Clio 2.2.0 with this particular commit XRPLF/clio#1360, this API will return a request error if you provide that parameter. This change removes this parameter from the ledger request model. This change would not impact lib users as this using this parameter or setting it to true instead of default false previously would not have been used by rippled or ClioType of Change
Did you update CHANGELOG.md?
Test Plan
Existing integration tests should continue to pass and manual testing of ledger API with xrpl-py against Clio 2.2.0 should succeed