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