mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
2204c85370
* Implement hf for reduced governance fee Signed-off-by: pasta <pasta@dashboost.org> * update VersionBitsDeploymentInfo * Adjust activation times for gov fee hard fork * Use raw timestamps * Adjust timestamps Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
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 =*/ "csv",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/ "dip0001",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ true,
|
|
},
|
|
{
|
|
/*.name =*/ "bip147",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/ "dip0003",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/ "dip0008",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/ "realloc",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/ "dip0020",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
{
|
|
/*.name =*/ "gov_fee",
|
|
/*.gbt_force =*/ true,
|
|
/*.check_mn_protocol =*/ false,
|
|
},
|
|
};
|