mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
refactor: Remove unused validation includes
This commit is contained in:
parent
226731ac11
commit
fa45a1338a
3 changed files with 3 additions and 12 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include <chainparams.h>
|
#include <chainparams.h>
|
||||||
#include <consensus/validation.h>
|
#include <consensus/validation.h>
|
||||||
|
#include <node/utxo_snapshot.h>
|
||||||
#include <test/fuzz/FuzzedDataProvider.h>
|
#include <test/fuzz/FuzzedDataProvider.h>
|
||||||
#include <test/fuzz/fuzz.h>
|
#include <test/fuzz/fuzz.h>
|
||||||
#include <test/fuzz/util.h>
|
#include <test/fuzz/util.h>
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include <node/blockstorage.h>
|
#include <node/blockstorage.h>
|
||||||
#include <node/coinstats.h>
|
#include <node/coinstats.h>
|
||||||
#include <node/ui_interface.h>
|
#include <node/ui_interface.h>
|
||||||
|
#include <node/utxo_snapshot.h>
|
||||||
#include <policy/policy.h>
|
#include <policy/policy.h>
|
||||||
#include <policy/rbf.h>
|
#include <policy/rbf.h>
|
||||||
#include <policy/settings.h>
|
#include <policy/settings.h>
|
||||||
|
|
|
@ -14,16 +14,10 @@
|
||||||
#include <arith_uint256.h>
|
#include <arith_uint256.h>
|
||||||
#include <attributes.h>
|
#include <attributes.h>
|
||||||
#include <chain.h>
|
#include <chain.h>
|
||||||
#include <coins.h>
|
|
||||||
#include <consensus/validation.h>
|
|
||||||
#include <crypto/common.h> // for ReadLE64
|
|
||||||
#include <fs.h>
|
#include <fs.h>
|
||||||
#include <node/utxo_snapshot.h>
|
|
||||||
#include <policy/feerate.h>
|
#include <policy/feerate.h>
|
||||||
#include <policy/packages.h>
|
#include <policy/packages.h>
|
||||||
#include <protocol.h> // For CMessageHeader::MessageStartChars
|
|
||||||
#include <script/script_error.h>
|
#include <script/script_error.h>
|
||||||
#include <serialize.h>
|
|
||||||
#include <sync.h>
|
#include <sync.h>
|
||||||
#include <txdb.h>
|
#include <txdb.h>
|
||||||
#include <txmempool.h> // For CTxMemPool::cs
|
#include <txmempool.h> // For CTxMemPool::cs
|
||||||
|
@ -44,18 +38,13 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class CChainState;
|
class CChainState;
|
||||||
class BlockValidationState;
|
|
||||||
class CBlockTreeDB;
|
class CBlockTreeDB;
|
||||||
class CBlockUndo;
|
|
||||||
class CChainParams;
|
class CChainParams;
|
||||||
struct CCheckpointData;
|
struct CCheckpointData;
|
||||||
class CInv;
|
|
||||||
class CConnman;
|
|
||||||
class CScriptCheck;
|
|
||||||
class CTxMemPool;
|
class CTxMemPool;
|
||||||
class ChainstateManager;
|
class ChainstateManager;
|
||||||
|
class SnapshotMetadata;
|
||||||
struct ChainTxData;
|
struct ChainTxData;
|
||||||
|
|
||||||
struct DisconnectedBlockTransactions;
|
struct DisconnectedBlockTransactions;
|
||||||
struct PrecomputedTransactionData;
|
struct PrecomputedTransactionData;
|
||||||
struct LockPoints;
|
struct LockPoints;
|
||||||
|
|
Loading…
Reference in a new issue