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.
This commit is contained in:
mDuo13
2014-11-06 17:37:43 -08:00
committed by Nik Bougalis
parent 37181c341e
commit 670401884c

View File

@@ -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);