2020-12-31 05:48:25 -03:00
|
|
|
// Copyright (c) 2016-2020 The Bitcoin Core developers
|
2018-06-16 16:33:42 -04:00
|
|
|
// 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,
|
|
|
|
},
|
2020-09-11 18:34:17 -03:00
|
|
|
{
|
|
|
|
/*.name =*/ "taproot",
|
|
|
|
/*.gbt_force =*/ true,
|
|
|
|
},
|
2018-06-16 16:33:42 -04:00
|
|
|
};
|