Missing piece.

This commit is contained in:
JoelKatz
2012-12-02 21:15:59 -08:00
parent 6f8699254c
commit c8159e70eb
2 changed files with 20 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ FeatureTable::featureList_t FeatureTable::getEnabledFeatures()
bool FeatureTable::shouldEnable(uint32 closeTime, const FeatureState& fs)
{
if (fs.mVetoed || fs.mEnabled || (fs.mLastMajority != mLastReport))
if (fs.mVetoed || fs.mEnabled || !fs.mSupported || (fs.mLastMajority != mLastReport))
return false;
if (fs.mFirstMajority == mFirstReport)
@@ -116,7 +116,7 @@ FeatureTable::featureList_t FeatureTable::getFeaturesToEnable(uint32 closeTime)
BOOST_FOREACH(const featureIt_t& it, mFeatureMap)
{
if (shouldEnable(closeTime, it.second))
ret.insert(it.first);
ret.insert(it.first);
}
}
return ret;
@@ -173,6 +173,19 @@ void FeatureTable::setEnabledFeatures(const std::vector<uint256>& features)
}
}
void FeatureTable::setSupportedFeatures(const std::vector<uint256>& features)
{
boost::mutex::scoped_lock sl(mMutex);
BOOST_FOREACH(featureIt_t& it, mFeatureMap)
{
it.second.mSupported = false;
}
BOOST_FOREACH(const uint256& it, features)
{
mFeatureMap[it].mSupported = true;
}
}
Json::Value FeatureTable::getJson(int)
{
Json::Value ret(Json::objectValue);
@@ -182,6 +195,8 @@ Json::Value FeatureTable::getJson(int)
{
Json::Value v(Json::objectValue);
v["supported"] = it.second.mSupported ? "true" : "false";
if (it.second.mEnabled)
v["enabled"] = "true";
else