From 23acc3efef966097aebcef19dbb4fafa10d23c7e Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 23 Apr 2013 08:36:35 -0700 Subject: [PATCH] All reserve votees in validations. --- src/cpp/ripple/SerializedValidation.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cpp/ripple/SerializedValidation.cpp b/src/cpp/ripple/SerializedValidation.cpp index f4031c0c7..633943f52 100644 --- a/src/cpp/ripple/SerializedValidation.cpp +++ b/src/cpp/ripple/SerializedValidation.cpp @@ -15,8 +15,10 @@ void SVFInit() sValidationFormat.push_back(SOElement(sfLedgerSequence, SOE_OPTIONAL)); sValidationFormat.push_back(SOElement(sfCloseTime, SOE_OPTIONAL)); sValidationFormat.push_back(SOElement(sfLoadFee, SOE_OPTIONAL)); - sValidationFormat.push_back(SOElement(sfBaseFee, SOE_OPTIONAL)); sValidationFormat.push_back(SOElement(sfFeatures, SOE_OPTIONAL)); + sValidationFormat.push_back(SOElement(sfBaseFee, SOE_OPTIONAL)); + sValidationFormat.push_back(SOElement(sfReserveBase, SOE_OPTIONAL)); + sValidationFormat.push_back(SOElement(sfReserveIncrement, SOE_OPTIONAL)); sValidationFormat.push_back(SOElement(sfSigningTime, SOE_REQUIRED)); sValidationFormat.push_back(SOElement(sfSigningPubKey, SOE_REQUIRED)); sValidationFormat.push_back(SOElement(sfSignature, SOE_OPTIONAL));