Remove all #include // for * comments

This commit is contained in:
Kittywhiskers Van Gogh 2021-11-11 14:40:50 -05:00
parent 09ab62948f
commit 872158d248
No known key found for this signature in database
GPG Key ID: 30CD0C065E5C4AAD
5 changed files with 25 additions and 25 deletions

View File

@ -38,8 +38,8 @@
#include <netbase.h>
#include <netgroup.h>
#include <node/blockstorage.h>
#include <node/caches.h> // for CalculateCacheSizes
#include <node/chainstate.h> // for LoadChainstate
#include <node/caches.h>
#include <node/chainstate.h>
#include <node/context.h>
#include <node/ui_interface.h>
#include <node/txreconciliation.h>

View File

@ -5,8 +5,8 @@
#ifndef BITCOIN_NODE_CACHES_H
#define BITCOIN_NODE_CACHES_H
#include <cstddef> // for size_t
#include <cstdint> // for int64_t
#include <cstddef>
#include <cstdint>
class ArgsManager;

View File

@ -4,20 +4,20 @@
#include <node/chainstate.h>
#include <consensus/params.h> // for Consensus::Params
#include <deploymentstatus.h> // for DeploymentActiveAfter
#include <node/blockstorage.h> // for CleanupBlockRevFiles, fHavePruned, fReindex
#include <validation.h> // for a lot of things
#include <consensus/params.h>
#include <deploymentstatus.h>
#include <node/blockstorage.h>
#include <validation.h>
#include <evo/chainhelper.h> // for CChainstateHelper
#include <evo/creditpool.h> // for CCreditPoolManager
#include <evo/deterministicmns.h> // for CDeterministicMNManager
#include <evo/evodb.h> // for CEvoDB
#include <evo/mnhftx.h> // for CMNHFManager
#include <llmq/chainlocks.h> // for llmq::chainLocksHandler
#include <llmq/context.h> // for LLMQContext
#include <llmq/instantsend.h> // for llmq::quorumInstantSendManager
#include <llmq/snapshot.h> // for llmq::quorumSnapshotManager
#include <evo/chainhelper.h>
#include <evo/creditpool.h>
#include <evo/deterministicmns.h>
#include <evo/evodb.h>
#include <evo/mnhftx.h>
#include <llmq/chainlocks.h>
#include <llmq/context.h>
#include <llmq/instantsend.h>
#include <llmq/snapshot.h>
std::optional<ChainstateLoadingError> LoadChainstate(bool fReset,
ChainstateManager& chainman,

View File

@ -5,11 +5,11 @@
#ifndef BITCOIN_NODE_CHAINSTATE_H
#define BITCOIN_NODE_CHAINSTATE_H
#include <cstdint> // for int64_t
#include <functional> // for std::function
#include <memory> // for std::unique_ptr
#include <optional> // for std::optional
#include <string> // for std::string
#include <cstdint>
#include <functional>
#include <memory>
#include <optional>
#include <string>
class CActiveMasternodeManager;
class CChainstateHelper;

View File

@ -30,8 +30,8 @@
#include <net.h>
#include <net_processing.h>
#include <noui.h>
#include <node/blockstorage.h> // for fReindex, fPruneMode
#include <node/chainstate.h> // for LoadChainstate
#include <node/blockstorage.h>
#include <node/chainstate.h>
#include <node/miner.h>
#include <policy/fees.h>
#include <pow.h>
@ -40,7 +40,7 @@
#include <rpc/server.h>
#include <scheduler.h>
#include <script/sigcache.h>
#include <shutdown.h> // for ShutdownRequested
#include <shutdown.h>
#include <spork.h>
#include <stats/client.h>
#include <streams.h>