Limit changed node count

This commit is contained in:
JoelKatz
2015-09-07 08:57:02 -07:00
committed by Nik Bougalis
parent 91eee1a42d
commit 88f885f2e7
10 changed files with 56 additions and 1 deletions

View File

@@ -200,6 +200,7 @@ enum TER
tecNEED_MASTER_KEY = 142,
tecDST_TAG_NEEDED = 143,
tecINTERNAL = 144,
tecOVERSIZE = 145,
};
inline bool isTelLocal(TER x)

View File

@@ -50,6 +50,7 @@ bool transResultInfo (TER code, std::string& token, std::string& text)
{ tecPATH_PARTIAL, "tecPATH_PARTIAL", "Path could not send full amount." },
{ tecNO_ALTERNATIVE_KEY, "tecNO_ALTERNATIVE_KEY", "The operation would remove the last way to sign a transaction."},
{ tecNO_REGULAR_KEY, "tecNO_REGULAR_KEY", "Regular key is not set." },
{ tecOVERSIZE, "tecOVERSIZE", "Object exceeded serialization limits." },
{ tecUNFUNDED, "tecUNFUNDED", "One of _ADD, _OFFER, or _SEND. Deprecated." },
{ tecUNFUNDED_ADD, "tecUNFUNDED_ADD", "Insufficient XRP balance for WalletAdd." },