diff --git a/src/TransactionErr.h b/src/TransactionErr.h index 652a23a21f..5fc440e8b9 100644 --- a/src/TransactionErr.h +++ b/src/TransactionErr.h @@ -103,9 +103,10 @@ enum TER // aka TransactionEngineResult // - Applied // - Forwarded // Only allowed as a return code of appliedTransaction when !tapRetry. Otherwise, treated as terRETRY. + // CAUTION: The numerical values for these results are part of the binary formats tepPARTIAL = 100, - tepPATH_DRY, - tepPATH_PARTIAL, + tepPATH_DRY = 101, + tepPATH_PARTIAL = 102, }; #define isTelLocal(x) ((x) >= telLOCAL_ERROR && (x) < temMALFORMED)