Use the supplied hard fork version in validate_miner_transaction

rather than using the current one. No functional changes, but may
save some bugs in the future.
This commit is contained in:
moneromooo-monero 2016-06-25 22:52:18 +01:00
parent acbe06d8e9
commit ada527558f
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -983,7 +983,7 @@ bool Blockchain::validate_miner_transaction(const block& b, size_t cumulative_bl
std::vector<size_t> last_blocks_sizes;
get_last_n_blocks_sizes(last_blocks_sizes, CRYPTONOTE_REWARD_BLOCKS_WINDOW);
if (!get_block_reward(epee::misc_utils::median(last_blocks_sizes), cumulative_block_size, already_generated_coins, base_reward, get_current_hard_fork_version()))
if (!get_block_reward(epee::misc_utils::median(last_blocks_sizes), cumulative_block_size, already_generated_coins, base_reward, version))
{
LOG_PRINT_L1("block size " << cumulative_block_size << " is bigger than allowed for this blockchain");
return false;