From adb9561c2c7347466bff1382f5ca9f603db69974 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sun, 23 Dec 2012 16:05:20 -0800 Subject: [PATCH] Typo. --- src/cpp/ripple/TransactionErr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/TransactionErr.h b/src/cpp/ripple/TransactionErr.h index df3c5e9b8..40242e291 100644 --- a/src/cpp/ripple/TransactionErr.h +++ b/src/cpp/ripple/TransactionErr.h @@ -133,7 +133,7 @@ enum TER // aka TransactionEngineResult #define isTerRetry(x) ((x) >= terRETRY && (x) < tesSUCCESS) #define isTepSuccess(x) ((x) >= tesSUCCESS) #define isTepPartial(x) ((x) >= tepPATH_PARTIAL && (x) < tecCLAIM) -#define isTecClaim(x) ((x) >= tepCLAIM) +#define isTecClaim(x) ((x) >= tecCLAIM) bool transResultInfo(TER terCode, std::string& strToken, std::string& strHuman); std::string transToken(TER terCode);