mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
tx format - add terQUEUED
This commit is contained in:
@@ -1121,7 +1121,7 @@ These codes indicate that the transaction failed and was not included in a ledge
|
|||||||
|
|
||||||
### ter Codes ###
|
### ter Codes ###
|
||||||
|
|
||||||
These codes indicate that the transaction failed, but it could apply successfully if some other transaction was applied first. They have numerical values in the range -99 to -1. The exact code for any given error is subject to change, so don't rely on it.
|
These codes indicate that the transaction failed, but it could apply successfully in the future, usually if some other hypothetical transaction applies first. They have numerical values in the range -99 to -1. The exact code for any given error is subject to change, so don't rely on it.
|
||||||
|
|
||||||
| Code | Explanation |
|
| Code | Explanation |
|
||||||
|------|-------------|
|
|------|-------------|
|
||||||
@@ -1135,6 +1135,7 @@ These codes indicate that the transaction failed, but it could apply successfull
|
|||||||
| terOWNERS | The transaction requires that account sending it has a nonzero "owners count", so the transaction cannot succeed. For example, an account cannot enable the [`lsfRequireAuth`](#accountset-flags) flag if it has any trust lines or available offers. |
|
| terOWNERS | The transaction requires that account sending it has a nonzero "owners count", so the transaction cannot succeed. For example, an account cannot enable the [`lsfRequireAuth`](#accountset-flags) flag if it has any trust lines or available offers. |
|
||||||
| terPRE\_SEQ | The `Sequence` number of the current transaction is higher than the current sequence number of the account sending the transaction. |
|
| terPRE\_SEQ | The `Sequence` number of the current transaction is higher than the current sequence number of the account sending the transaction. |
|
||||||
| terRETRY | Unspecified retriable error. |
|
| terRETRY | Unspecified retriable error. |
|
||||||
|
| terQUEUED | The transaction met the load-scaled [transaction cost](concept-transaction-cost.html) but did not meet the open ledger requirement, so the transaction has been queued for a future ledger. |
|
||||||
|
|
||||||
### tes Success ###
|
### tes Success ###
|
||||||
|
|
||||||
|
|||||||
@@ -1974,7 +1974,7 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<h3 id="ter-codes">ter Codes</h3>
|
<h3 id="ter-codes">ter Codes</h3>
|
||||||
<p>These codes indicate that the transaction failed, but it could apply successfully if some other transaction was applied first. They have numerical values in the range -99 to -1. The exact code for any given error is subject to change, so don't rely on it.</p>
|
<p>These codes indicate that the transaction failed, but it could apply successfully in the future, usually if some other hypothetical transaction applies first. They have numerical values in the range -99 to -1. The exact code for any given error is subject to change, so don't rely on it.</p>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -2023,6 +2023,10 @@
|
|||||||
<td>terRETRY</td>
|
<td>terRETRY</td>
|
||||||
<td>Unspecified retriable error.</td>
|
<td>Unspecified retriable error.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>terQUEUED</td>
|
||||||
|
<td>The transaction met the load-scaled <a href="concept-transaction-cost.html">transaction cost</a> but did not meet the open ledger requirement, so the transaction has been queued for a future ledger.</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<h3 id="tes-success">tes Success</h3>
|
<h3 id="tes-success">tes Success</h3>
|
||||||
|
|||||||
Reference in New Issue
Block a user