mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
6bacf5423b
## Issue being fixed or feature implemented Since v19, Evo nodes are paid 4x blocks in a row. This needs to be reverted when MN Reward Reallocation activates. ## What was done? Starting from MN Reward Reallocation activation, Evo nodes are paid one block in a row (like regular masternodes). In addition, `nConsecutivePayments` isn't incremented anymore for Evo nodes. ## How Has This Been Tested? `feature_llmq_hpmn.py` with MN Reward Reallocation activation. ## Breaking Changes no ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [x] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ --------- Co-authored-by: Konstantin Akimov <knstqq@gmail.com>
23 lines
585 B
C++
23 lines
585 B
C++
// Copyright (c) 2016-2018 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <versionbitsinfo.h>
|
|
|
|
#include <consensus/params.h>
|
|
|
|
const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_BITS_DEPLOYMENTS] = {
|
|
{
|
|
/*.name =*/ "testdummy",
|
|
/*.gbt_force =*/ true,
|
|
},
|
|
{
|
|
/*.name =*/"v20",
|
|
/*.gbt_force =*/true,
|
|
},
|
|
{
|
|
/*.name =*/"mn_rr",
|
|
/*.gbt_force =*/true,
|
|
},
|
|
};
|