Mark that the tep codes are part of the binary format.

This commit is contained in:
JoelKatz
2012-10-16 16:24:15 -07:00
parent 56b5b5c597
commit 6675a79b63

View File

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