aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2022-07-12 22:24:31 -0400
committerCarl Dong <contact@carldong.me>2022-07-15 12:26:20 -0400
commitcb3e9a1e3f8d72daaa361fc45dd853775e754b9d (patch)
tree7d95018b6407a0fafd0d34577dd73f52d858fc21 /src/validation.h
parentaa306765419f7dbea12b12e15553039835ba0e4d (diff)
downloadbitcoin-cb3e9a1e3f8d72daaa361fc45dd853775e754b9d.tar.xz
Move {Load,Dump}Mempool to kernel namespace
Also: 1. Add the newly introduced kernel/mempool_persist.cpp to IWYU CI script 2. Add chrono mapping for iwyu
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/validation.h b/src/validation.h
index df4fc77980..f89d42e310 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -1012,12 +1012,6 @@ bool DeploymentEnabled(const ChainstateManager& chainman, DEP dep)
return DeploymentEnabled(chainman.GetConsensus(), dep);
}
-/** Dump the mempool to disk. */
-bool DumpMempool(const CTxMemPool& pool, const fs::path& dump_path, fsbridge::FopenFn mockable_fopen_function = fsbridge::fopen, bool skip_file_commit = false);
-
-/** Load the mempool from disk. */
-bool LoadMempool(CTxMemPool& pool, const fs::path& load_path, CChainState& active_chainstate, fsbridge::FopenFn mockable_fopen_function = fsbridge::fopen);
-
/**
* Return the expected assumeutxo value for a given height, if one exists.
*