diff options
author | Carl Dong <contact@carldong.me> | 2021-11-11 14:40:50 -0500 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-12-07 14:48:49 -0500 |
commit | 3b1584b794499158e0df07bd1bee1b803c568614 (patch) | |
tree | 0110374a1ee32e9e62541f523d3fe41dec306c2f /src/node | |
parent | 9a5a5a3d08b2c130ab9147914739ff3583b0dc84 (diff) |
Remove all #include // for * comments
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/caches.h | 4 | ||||
-rw-r--r-- | src/node/chainstate.cpp | 6 | ||||
-rw-r--r-- | src/node/chainstate.h | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/node/caches.h b/src/node/caches.h index 437e7d10e5..200f0b85b8 100644 --- a/src/node/caches.h +++ b/src/node/caches.h @@ -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; diff --git a/src/node/chainstate.cpp b/src/node/chainstate.cpp index 35d4b4cc8c..7cb452a910 100644 --- a/src/node/chainstate.cpp +++ b/src/node/chainstate.cpp @@ -4,9 +4,9 @@ #include <node/chainstate.h> -#include <consensus/params.h> // for Consensus::Params -#include <node/blockstorage.h> // for CleanupBlockRevFiles, fHavePruned, fReindex -#include <validation.h> // for a lot of things +#include <consensus/params.h> +#include <node/blockstorage.h> +#include <validation.h> std::optional<ChainstateLoadingError> LoadChainstate(bool fReset, ChainstateManager& chainman, diff --git a/src/node/chainstate.h b/src/node/chainstate.h index c3b8baf7fc..11278a0991 100644 --- a/src/node/chainstate.h +++ b/src/node/chainstate.h @@ -5,9 +5,9 @@ #ifndef BITCOIN_NODE_CHAINSTATE_H #define BITCOIN_NODE_CHAINSTATE_H -#include <cstdint> // for int64_t -#include <functional> // for std::function -#include <optional> // for std::optional +#include <cstdint> +#include <functional> +#include <optional> class ChainstateManager; namespace Consensus { |