Small updates.

This commit is contained in:
JoelKatz
2012-12-02 20:49:28 -08:00
parent 331514570c
commit 6f8699254c
3 changed files with 3 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ static bool LEFInit()
; ;
DECLARE_LEF(EnabledFeatures, ltFEATURES) DECLARE_LEF(EnabledFeatures, ltFEATURES)
<< SOElement(sfEnabledFeatures, SOE_REQUIRED) << SOElement(sfFeatures, SOE_REQUIRED)
; ;
return true; return true;

View File

@@ -155,6 +155,6 @@
FIELD(Necessary, ARRAY, 6) FIELD(Necessary, ARRAY, 6)
FIELD(Sufficient, ARRAY, 7) FIELD(Sufficient, ARRAY, 7)
FIELD(AffectedNodes, ARRAY, 8) FIELD(AffectedNodes, ARRAY, 8)
FIELD(EnabledFeatures, ARRAY, 9) FIELD(Features, ARRAY, 9)
// vim:ts=4 // vim:ts=4

View File

@@ -16,6 +16,7 @@ static bool SVFInit()
sValidationFormat.push_back(new SOElement(sfCloseTime, SOE_OPTIONAL)); sValidationFormat.push_back(new SOElement(sfCloseTime, SOE_OPTIONAL));
sValidationFormat.push_back(new SOElement(sfLoadFee, SOE_OPTIONAL)); sValidationFormat.push_back(new SOElement(sfLoadFee, SOE_OPTIONAL));
sValidationFormat.push_back(new SOElement(sfBaseFee, SOE_OPTIONAL)); sValidationFormat.push_back(new SOElement(sfBaseFee, SOE_OPTIONAL));
sValidationFormat.push_back(new SOElement(sfFeatures, SOE_OPTIONAL));
sValidationFormat.push_back(new SOElement(sfSigningTime, SOE_REQUIRED)); sValidationFormat.push_back(new SOElement(sfSigningTime, SOE_REQUIRED));
sValidationFormat.push_back(new SOElement(sfSigningPubKey, SOE_REQUIRED)); sValidationFormat.push_back(new SOElement(sfSigningPubKey, SOE_REQUIRED));
sValidationFormat.push_back(new SOElement(sfSignature, SOE_OPTIONAL)); sValidationFormat.push_back(new SOElement(sfSignature, SOE_OPTIONAL));