hardfork: add a default fork entry for v1 if none exist

To avoid special cases
This commit is contained in:
moneromooo-monero
2016-02-08 20:58:06 +00:00
parent c7f82ec769
commit 759383c52d

View File

@@ -155,6 +155,11 @@ bool HardFork::add(const cryptonote::block &block, uint64_t height)
void HardFork::init()
{
CRITICAL_REGION_LOCAL(lock);
// add a placeholder for the default version, to avoid special cases
if (heights.empty())
heights.push_back(Params(original_version, 0, 0, 0));
versions.clear();
for (size_t n = 0; n < 256; ++n)
last_versions[n] = 0;