tx format - amendment result codes

This commit is contained in:
mDuo13
2016-03-30 17:23:21 -07:00
parent 63d5b8b2de
commit 6a11960240
2 changed files with 15 additions and 0 deletions

View File

@@ -1072,6 +1072,9 @@ These codes indicate that the transaction was malformed, and cannot succeed acco
| temBAD_WEIGHT | The [SignerListSet](#signerlistset) transaction includes a `SignerWeight` that is invalid, for example a zero or negative value. |
| temBAD_SIGNER | The [SignerListSet](#signerlistset) transaction includes a signer who is invalid: for example, it might be a duplicate, or it might be the account to which the SignerList belongs. |
| temBAD_QUORUM | The [SignerListSet](#signerlistset) transaction has an invalid `SignerQuorum` value. Either the value is not greater than zero, or it is more than the sum of all signers in the list. |
| temUNCERTAIN | Used internally only. This code should never be returned. |
| temUNKNOWN | Used internally only. This code should never be returned. |
| temDISABLED | The transaction requires logic that is currently disabled. Typically this means you are trying to use an [amendment](concept-amendments.html) that is not enabled for the current ledger. |
### tef Codes ###

View File

@@ -1789,6 +1789,18 @@
<td>temBAD_QUORUM</td>
<td>The <a href="#signerlistset">SignerListSet</a> transaction has an invalid <code>SignerQuorum</code> value. Either the value is not greater than zero, or it is more than the sum of all signers in the list.</td>
</tr>
<tr>
<td>temUNCERTAIN</td>
<td>Used internally only. This code should never be returned.</td>
</tr>
<tr>
<td>temUNKNOWN</td>
<td>Used internally only. This code should never be returned.</td>
</tr>
<tr>
<td>temDISABLED</td>
<td>The transaction requires logic that is currently disabled. Typically this means you are trying to use an <a href="concept-amendments.html">amendment</a> that is not enabled for the current ledger.</td>
</tr>
</tbody>
</table>
<h3 id="tef-codes">tef Codes</h3>