From 670401884cf16e1716901bd9aa8890d0fc3b3bb2 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Thu, 6 Nov 2014 17:37:43 -0800 Subject: [PATCH] Improve the human-readable description of the tesSUCCESS code: Transactions that return tesSUCCESS have only been accepted and propagated on the Ripple network and should not be considered final until they have been included in a validated ledger. --- src/ripple/protocol/impl/TER.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/protocol/impl/TER.cpp b/src/ripple/protocol/impl/TER.cpp index 95436e78b..db5e989be 100644 --- a/src/ripple/protocol/impl/TER.cpp +++ b/src/ripple/protocol/impl/TER.cpp @@ -124,7 +124,7 @@ bool transResultInfo (TER terCode, std::string& strToken, std::string& strHuman) { terPRE_SEQ, "terPRE_SEQ", "Missing/inapplicable prior transaction." }, { terOWNERS, "terOWNERS", "Non-zero owner count." }, - { tesSUCCESS, "tesSUCCESS", "The transaction was applied." }, + { tesSUCCESS, "tesSUCCESS", "The transaction was applied. Only final in a validated ledger." }, }; int iIndex = RIPPLE_ARRAYSIZE (transResultInfoA);