...
Code Block |
---|
GET /v3/transactions/invalid/size
|
The response is a JSON string, with the integer number of invalid transactions as <size>
:
Code Block |
---|
{ "size": <size> }
|
Truncate Invalid Transactions by Time
...
Code Block |
---|
POST /v3/transactions/invalid/remove/until
|
with the timestamp in milliseconds (<timestamp-ms>
) as a JSON string in the body:
Code Block |
---|
{ "time" : <timestamp-ms> }
|
Note: Since improperly removing invalid transactions might result in data inconsistency, please refer to see Transaction Service Maintenance for proper usage.
...