[move-only] Rename versionbitsinfo to deploymentinfo

This commit is contained in:
Anthony Towns
2021-03-11 12:17:22 +10:00
parent c64b2c6a0f
commit ea68b3a572
6 changed files with 9 additions and 9 deletions

18
src/deploymentinfo.cpp Normal file
View File

@@ -0,0 +1,18 @@
// Copyright (c) 2016-2020 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 <deploymentinfo.h>
#include <consensus/params.h>
const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_BITS_DEPLOYMENTS] = {
{
/*.name =*/ "testdummy",
/*.gbt_force =*/ true,
},
{
/*.name =*/ "taproot",
/*.gbt_force =*/ true,
},
};