From 6a11960240e96c9dae6cf8a63a0a41d5bdd32a4d Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Wed, 30 Mar 2016 17:23:21 -0700 Subject: [PATCH] tx format - amendment result codes --- content/reference-transaction-format.md | 3 +++ reference-transaction-format.html | 12 ++++++++++++ 2 files changed, 15 insertions(+) diff --git a/content/reference-transaction-format.md b/content/reference-transaction-format.md index 7ff12c64fd..bf8f9d7ee8 100644 --- a/content/reference-transaction-format.md +++ b/content/reference-transaction-format.md @@ -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 ### diff --git a/reference-transaction-format.html b/reference-transaction-format.html index 1e08afd69c..e760c736aa 100644 --- a/reference-transaction-format.html +++ b/reference-transaction-format.html @@ -1789,6 +1789,18 @@ temBAD_QUORUM The 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 that is not enabled for the current ledger. +

tef Codes