MOVEONLY: Move versionbits info out of versionbits.o
This commit is contained in:
parent
920c090f63
commit
980b38f8a1
8 changed files with 44 additions and 24 deletions
|
@ -187,6 +187,7 @@ BITCOIN_CORE_H = \
|
||||||
validation.h \
|
validation.h \
|
||||||
validationinterface.h \
|
validationinterface.h \
|
||||||
versionbits.h \
|
versionbits.h \
|
||||||
|
versionbitsinfo.h \
|
||||||
walletinitinterface.h \
|
walletinitinterface.h \
|
||||||
wallet/coincontrol.h \
|
wallet/coincontrol.h \
|
||||||
wallet/crypter.h \
|
wallet/crypter.h \
|
||||||
|
@ -400,6 +401,7 @@ libbitcoin_common_a_SOURCES = \
|
||||||
script/ismine.cpp \
|
script/ismine.cpp \
|
||||||
script/sign.cpp \
|
script/sign.cpp \
|
||||||
script/standard.cpp \
|
script/standard.cpp \
|
||||||
|
versionbitsinfo.cpp \
|
||||||
warnings.cpp \
|
warnings.cpp \
|
||||||
$(BITCOIN_CORE_H)
|
$(BITCOIN_CORE_H)
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
#include <util.h>
|
#include <util.h>
|
||||||
#include <utilmoneystr.h>
|
#include <utilmoneystr.h>
|
||||||
#include <validationinterface.h>
|
#include <validationinterface.h>
|
||||||
|
#include <versionbitsinfo.h>
|
||||||
#include <warnings.h>
|
#include <warnings.h>
|
||||||
#include <walletinitinterface.h>
|
#include <walletinitinterface.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
#include <utilstrencodings.h>
|
#include <utilstrencodings.h>
|
||||||
#include <hash.h>
|
#include <hash.h>
|
||||||
#include <validationinterface.h>
|
#include <validationinterface.h>
|
||||||
|
#include <versionbitsinfo.h>
|
||||||
#include <warnings.h>
|
#include <warnings.h>
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include <utilstrencodings.h>
|
#include <utilstrencodings.h>
|
||||||
#include <validation.h>
|
#include <validation.h>
|
||||||
#include <validationinterface.h>
|
#include <validationinterface.h>
|
||||||
|
#include <versionbitsinfo.h>
|
||||||
#include <warnings.h>
|
#include <warnings.h>
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
|
@ -5,21 +5,6 @@
|
||||||
#include <versionbits.h>
|
#include <versionbits.h>
|
||||||
#include <consensus/params.h>
|
#include <consensus/params.h>
|
||||||
|
|
||||||
const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_BITS_DEPLOYMENTS] = {
|
|
||||||
{
|
|
||||||
/*.name =*/ "testdummy",
|
|
||||||
/*.gbt_force =*/ true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
/*.name =*/ "csv",
|
|
||||||
/*.gbt_force =*/ true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
/*.name =*/ "segwit",
|
|
||||||
/*.gbt_force =*/ true,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
ThresholdState AbstractThresholdConditionChecker::GetStateFor(const CBlockIndex* pindexPrev, const Consensus::Params& params, ThresholdConditionCache& cache) const
|
ThresholdState AbstractThresholdConditionChecker::GetStateFor(const CBlockIndex* pindexPrev, const Consensus::Params& params, ThresholdConditionCache& cache) const
|
||||||
{
|
{
|
||||||
int nPeriod = Period(params);
|
int nPeriod = Period(params);
|
||||||
|
|
|
@ -30,13 +30,6 @@ enum class ThresholdState {
|
||||||
// will either be nullptr or a block with (height + 1) % Period() == 0.
|
// will either be nullptr or a block with (height + 1) % Period() == 0.
|
||||||
typedef std::map<const CBlockIndex*, ThresholdState> ThresholdConditionCache;
|
typedef std::map<const CBlockIndex*, ThresholdState> ThresholdConditionCache;
|
||||||
|
|
||||||
struct VBDeploymentInfo {
|
|
||||||
/** Deployment name */
|
|
||||||
const char *name;
|
|
||||||
/** Whether GBT clients can safely ignore this rule in simplified usage */
|
|
||||||
bool gbt_force;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct BIP9Stats {
|
struct BIP9Stats {
|
||||||
int period;
|
int period;
|
||||||
int threshold;
|
int threshold;
|
||||||
|
@ -45,8 +38,6 @@ struct BIP9Stats {
|
||||||
bool possible;
|
bool possible;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const struct VBDeploymentInfo VersionBitsDeploymentInfo[];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstract class that implements BIP9-style threshold logic, and caches results.
|
* Abstract class that implements BIP9-style threshold logic, and caches results.
|
||||||
*/
|
*/
|
||||||
|
|
22
src/versionbitsinfo.cpp
Normal file
22
src/versionbitsinfo.cpp
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
// 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,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
/*.name =*/ "csv",
|
||||||
|
/*.gbt_force =*/ true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
/*.name =*/ "segwit",
|
||||||
|
/*.gbt_force =*/ true,
|
||||||
|
}
|
||||||
|
};
|
17
src/versionbitsinfo.h
Normal file
17
src/versionbitsinfo.h
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef BITCOIN_VERSIONBITSINFO_H
|
||||||
|
#define BITCOIN_VERSIONBITSINFO_H
|
||||||
|
|
||||||
|
struct VBDeploymentInfo {
|
||||||
|
/** Deployment name */
|
||||||
|
const char *name;
|
||||||
|
/** Whether GBT clients can safely ignore this rule in simplified usage */
|
||||||
|
bool gbt_force;
|
||||||
|
};
|
||||||
|
|
||||||
|
extern const struct VBDeploymentInfo VersionBitsDeploymentInfo[];
|
||||||
|
|
||||||
|
#endif // BITCOIN_VERSIONBITSINFO_H
|
Loading…
Add table
Reference in a new issue