diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2024-06-26 18:58:46 +0000 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2024-06-26 22:47:09 +0000 |
commit | f1478c05458562a9bef5c2ba43959d758e7b4745 (patch) | |
tree | 41e1ab5c15394c7a7270be086c9e49588096cf1e /src/init.cpp | |
parent | 6d242ff1e9ca02fd8f5cb3ffe82dfb48a52366cc (diff) |
mempool: move LoadMempool/DumpMempool to node
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index c6ef62372e..18f1ff6da8 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -8,7 +8,6 @@ #include <init.h> #include <kernel/checks.h> -#include <kernel/mempool_persist.h> #include <kernel/validation_cache_sizes.h> #include <addrman.h> @@ -51,6 +50,7 @@ #include <node/interface_ui.h> #include <node/kernel_notifications.h> #include <node/mempool_args.h> +#include <node/mempool_persist.h> #include <node/mempool_persist_args.h> #include <node/miner.h> #include <node/peerman_args.h> @@ -119,8 +119,6 @@ using common::AmountErrMsg; using common::InvalidPortErrMsg; using common::ResolveErrMsg; -using kernel::DumpMempool; -using kernel::LoadMempool; using kernel::ValidationCacheSizes; using node::ApplyArgsManOptions; @@ -130,6 +128,8 @@ using node::CalculateCacheSizes; using node::DEFAULT_PERSIST_MEMPOOL; using node::DEFAULT_PRINTPRIORITY; using node::DEFAULT_STOPATHEIGHT; +using node::DumpMempool; +using node::LoadMempool; using node::KernelNotifications; using node::LoadChainstate; using node::MempoolPath; |