mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 05:23:01 +01:00
e3a97b0156
## Issue being fixed or feature implemented This changes are follow up for backport bitcoin/bitcoin#16060 ## What was done? Buried all hardened dash deployments ## How Has This Been Tested? Run unit/functional tests. Run dash with option `-reindex` for both mainnet/testnet - both succeed. ## Breaking Changes No breaking changes, it should be fully compatible. ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] 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
26 lines
693 B
C++
26 lines
693 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,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/"v19",
|
|
/*.gbt_force =*/true,
|
|
/*.check_mn_protocol =*/false,
|
|
},
|
|
{
|
|
/*.name =*/"v20",
|
|
/*.gbt_force =*/true,
|
|
/*.check_mn_protocol =*/false,
|
|
},
|
|
};
|