From 6675a79b635fba0f14ffb6dd57bbbd5069a87374 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 16 Oct 2012 16:24:15 -0700 Subject: [PATCH] Mark that the tep codes are part of the binary format. --- src/TransactionErr.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)