2020-12-31 09:48:25 +01:00
|
|
|
// Copyright (c) 2016-2020 The Bitcoin Core developers
|
2018-06-16 22:33:42 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2021-03-11 12:17:22 +10:00
|
|
|
#include <deploymentinfo.h>
|
2018-06-16 22:33:42 +02:00
|
|
|
|
|
|
|
#include <consensus/params.h>
|
|
|
|
|
|
|
|
const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_BITS_DEPLOYMENTS] = {
|
|
|
|
{
|
|
|
|
/*.name =*/ "testdummy",
|
|
|
|
/*.gbt_force =*/ true,
|
|
|
|
},
|
2020-09-11 14:34:17 -07:00
|
|
|
{
|
|
|
|
/*.name =*/ "taproot",
|
|
|
|
/*.gbt_force =*/ true,
|
|
|
|
},
|
2018-06-16 22:33:42 +02:00
|
|
|
};
|