mirror of
https://git.wownero.com/wownero/wownero.git
synced 2025-01-23 05:48:36 +00:00
blockchain: use the version passed as parameter, not a new one
This commit is contained in:
parent
d50f2f5ac1
commit
b0fda7c551
@ -1207,7 +1207,7 @@ bool Blockchain::validate_miner_transaction(const block& b, size_t cumulative_bl
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// From hard fork 2, we allow a miner to claim less block reward than is allowed, in case a miner wants less dust
|
// From hard fork 2, we allow a miner to claim less block reward than is allowed, in case a miner wants less dust
|
||||||
if (m_hardfork->get_current_version() < 2)
|
if (version < 2)
|
||||||
{
|
{
|
||||||
if(base_reward + fee != money_in_use)
|
if(base_reward + fee != money_in_use)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user