Merge pull request #570

fc34132 Remove assert from status command (hyc)
pull/576/merge
Riccardo Spagni 9 years ago
commit aa6dd048d8
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -375,7 +375,7 @@ bool HardFork::get_voting_info(uint8_t version, uint32_t &window, uint32_t &vote
for (size_t n = version; n < 256; ++n)
votes += last_versions[n];
threshold = (window * heights[current_version].threshold + 99) / 100;
assert((votes >= threshold) == enabled);
//assert((votes >= threshold) == enabled);
earliest_height = get_earliest_ideal_height_for_version(version);
voting = heights.back().version;
return enabled;

Loading…
Cancel
Save