From fbd8f9deb7ccd138c798fa2cd27beb1f8f254535 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 12 Oct 2012 21:59:17 -0700 Subject: [PATCH] Change "id" to "hash", --- src/FieldNames.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FieldNames.cpp b/src/FieldNames.cpp index 74d033c9c..2f84ec7ab 100644 --- a/src/FieldNames.cpp +++ b/src/FieldNames.cpp @@ -17,7 +17,7 @@ SField sfInvalid(-1), sfGeneric(0); SField sfLedgerEntry(STI_LEDGERENTRY, 1, "LedgerEntry"); SField sfTransaction(STI_TRANSACTION, 1, "Transaction"); SField sfValidation(STI_VALIDATION, 1, "Validation"); -SField sfID(STI_HASH256, 257, "id"); +SField sfHash(STI_HASH256, 257, "hash"); SField sfIndex(STI_HASH256, 258, "index"); #define FIELD(name, type, index) SField sf##name(FIELD_CODE(STI_##type, index), STI_##type, index, #name);