-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[account_tx with ledger_index_max, ledger_index_min and ledger_index do not return error] (Version: [1.11.0-rc2]) #4545
Comments
Issue exists for ledger_index_max, ledger_index_min and ledger_hash also. |
2 tasks
ckeshava
pushed a commit
to ckeshava/rippled
that referenced
this issue
Jul 10, 2023
Certain inputs for the AccountTx method should return an error. In other words, an invalid request from a user or client now results in an error message. Since this can change the response from the API, it is an API breaking change. This commit maintains backward compatibility by keeping the existing behavior for existing requests. When clients specify "api_version": 2, they will be able to get the updated error messages. Update unit tests to check the error based on the API version. * Fix XRPLF#4288 * Fix XRPLF#4545
ckeshava
pushed a commit
to ckeshava/rippled
that referenced
this issue
Sep 22, 2023
Certain inputs for the AccountTx method should return an error. In other words, an invalid request from a user or client now results in an error message. Since this can change the response from the API, it is an API breaking change. This commit maintains backward compatibility by keeping the existing behavior for existing requests. When clients specify "api_version": 2, they will be able to get the updated error messages. Update unit tests to check the error based on the API version. * Fix XRPLF#4288 * Fix XRPLF#4545
ckeshava
pushed a commit
to ckeshava/rippled
that referenced
this issue
Sep 25, 2023
Certain inputs for the AccountTx method should return an error. In other words, an invalid request from a user or client now results in an error message. Since this can change the response from the API, it is an API breaking change. This commit maintains backward compatibility by keeping the existing behavior for existing requests. When clients specify "api_version": 2, they will be able to get the updated error messages. Update unit tests to check the error based on the API version. * Fix XRPLF#4288 * Fix XRPLF#4545
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue Description
Steps to Reproduce
{ "method": "account_tx", "params": [ { "account": "rH9pnDCtgAbFjozbZQuJWvPM8QHweXgZhj", "ledger_index_max": 28953065, "ledger_index_min": 23333389, "ledger_index": 28953075 } ] }
Expected Result
invalidParams
Actual Result
No error
Environment
Supporting Files
The text was updated successfully, but these errors were encountered: