aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/mempool_persist.h
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-04-13 10:26:17 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-08-07 11:32:29 +0200
commitfa8866990dba7817427977bfe834efdb17114d37 (patch)
tree562d870f99bf36ba047bf81ae7073503e5272dd9 /src/kernel/mempool_persist.h
parent6888886cecf6665da70b3dc3772b3c12ef06ad76 (diff)
doc: Clarify the getmempoolinfo.loaded RPC field documentation
Also, clarify the LoadMempool doxygen.
Diffstat (limited to 'src/kernel/mempool_persist.h')
-rw-r--r--src/kernel/mempool_persist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/mempool_persist.h b/src/kernel/mempool_persist.h
index cb09119e4a..23c396c0f0 100644
--- a/src/kernel/mempool_persist.h
+++ b/src/kernel/mempool_persist.h
@@ -12,12 +12,12 @@ class CTxMemPool;
namespace kernel {
-/** Dump the mempool to disk. */
+/** Dump the mempool to a file. */
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. */
+/** Import the file and attempt to add its contents to the mempool. */
bool LoadMempool(CTxMemPool& pool, const fs::path& load_path,
Chainstate& active_chainstate,
fsbridge::FopenFn mockable_fopen_function = fsbridge::fopen);