Files
xahaud/src/ripple
Peter Chen 73550a4bfc APIv2: add error messages for account_tx (#4571)
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 #4288
* Fix #4545
2025-06-15 23:07:36 +09:00
..
2025-04-01 16:47:48 +10:00
2024-11-20 10:54:03 +10:00
2025-04-30 11:51:58 +02:00
2025-04-30 11:51:58 +02:00
2025-04-01 16:47:48 +10:00
2025-04-30 11:51:58 +02:00
2024-11-20 10:54:03 +10:00
2024-12-11 13:08:44 +11:00
2020-02-25 19:21:50 -08:00
2018-03-02 07:37:15 -08:00

Ripple Source Guidelines

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem