aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/coinstats.cpp
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2022-02-16 17:51:57 -0500
committerCarl Dong <contact@carldong.me>2022-05-23 14:53:35 -0400
commit80970985c965f79b8c376c8a922497e385445dd8 (patch)
treeaaba582afbad36c40b8f57fad509c26993a8e453 /src/kernel/coinstats.cpp
parent35f73ce4b2efd7341fe55f77b334f27ad8aad090 (diff)
downloadbitcoin-80970985c965f79b8c376c8a922497e385445dd8.tar.xz
coinstats: Split node/coinstats.h to kernel/coinstats.h
Most of this commit is pure-move. After this change: - kernel/coinstats.h -> Contains declarations for: - enum class CoinStatsHashType - struct CCoinsStats - GetBogoSize(...) - TxOutSer(...) - ComputeUTXOStats(...) - node/coinstats.h -> Just GetUTXOStats, which will be removed as we change callers to directly use the hashing/indexing codepaths in future commits.
Diffstat (limited to 'src/kernel/coinstats.cpp')
-rw-r--r--src/kernel/coinstats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/coinstats.cpp b/src/kernel/coinstats.cpp
index 15d5c3fbe6..49db98d663 100644
--- a/src/kernel/coinstats.cpp
+++ b/src/kernel/coinstats.cpp
@@ -2,7 +2,7 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-#include <node/coinstats.h>
+#include <kernel/coinstats.h>
#include <coins.h>
#include <crypto/muhash.h>