diff --git a/src/cpp/ripple/Application.cpp b/src/cpp/ripple/Application.cpp index a6d23d3b5..b399fcc15 100644 --- a/src/cpp/ripple/Application.cpp +++ b/src/cpp/ripple/Application.cpp @@ -199,6 +199,8 @@ void Application::setup() if (!theConfig.RUN_STANDALONE) updateTables(theConfig.LDB_IMPORT); + mFeatureTable.addInitialFeatures(); + if (theConfig.START_UP == Config::FRESH) { WriteLog (lsINFO, Application) << "Starting new Ledger"; diff --git a/src/cpp/ripple/FeatureTable.h b/src/cpp/ripple/FeatureTable.h index 79c9f1f65..aecc60b19 100644 --- a/src/cpp/ripple/FeatureTable.h +++ b/src/cpp/ripple/FeatureTable.h @@ -61,7 +61,7 @@ public: FeatureTable(uint32 majorityTime, int majorityFraction) : mMajorityTime(majorityTime), mMajorityFraction(majorityFraction), mFirstReport(0), mLastReport(0) - { addInitialFeatures(); } + { ; } void addInitialFeatures();