-
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
Add include_deleted
param to ledger_entry API
#721
Changes from 11 commits
29468e7
208d969
a2fe883
20885b3
d70f8fe
1038ef7
9b3ae2e
8dd215c
f7b8144
910fb14
e957057
23dcc9b
b2b12c1
4baff7c
cda547b
945f018
ce4fe99
1512949
28db48a
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 |
---|---|---|
|
@@ -264,6 +264,7 @@ class LedgerEntry(Request, LookupByLedgerRequest): | |
binary: bool = False | ||
nft_page: Optional[str] = None | ||
"""Must be the object ID of the NFToken page, as hexadecimal""" | ||
include_deleted: Optional[bool] = None | ||
Kassaking7 marked this conversation as resolved.
Show resolved
Hide resolved
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. Why does the xrpl-py client library not contain the 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. Since there's no response class in ledger_entry.py so I assume we don't need it? For js one there's already a response class(interface) so I just add 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. Yes, Python doesn't have response models. |
||
|
||
def _get_errors(self: Self) -> Dict[str, str]: | ||
errors = super()._get_errors() | ||
|
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.
Move the
include_deleted
entry to the "Unreleased" section.The changelog entry for adding
include_deleted
to ledger_entry request is currently under version 2.6.0, which is a released version. Since this is a new feature being added in PR #721, it should be documented under the "Unreleased" section instead.Apply this diff to move the entry:
📝 Committable suggestion