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

To avoid special cases
release-v0.4.0.1
moneromooo-monero 8 years ago
parent c7f82ec769
commit 759383c52d
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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;

Loading…
Cancel
Save