Bitcoin ABC 0.30.5
P2P Digital Currency
mempool_persist.h
Go to the documentation of this file.
1// Copyright (c) 2022 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_KERNEL_MEMPOOL_PERSIST_H
6#define BITCOIN_KERNEL_MEMPOOL_PERSIST_H
7
8#include <util/fs.h>
9
10class Chainstate;
11class CTxMemPool;
12
13namespace kernel {
14
16bool DumpMempool(const CTxMemPool &pool, const fs::path &dump_path,
17 fsbridge::FopenFn mockable_fopen_function = fsbridge::fopen,
18 bool skip_file_commit = false);
19
21bool LoadMempool(CTxMemPool &pool, const fs::path &load_path,
22 Chainstate &active_chainstate,
23 fsbridge::FopenFn mockable_fopen_function = fsbridge::fopen);
24
25} // namespace kernel
26
27#endif // BITCOIN_KERNEL_MEMPOOL_PERSIST_H
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:212
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition: validation.h:699
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
FILE * fopen(const fs::path &p, const char *mode)
Definition: fs.cpp:30
std::function< FILE *(const fs::path &, const char *)> FopenFn
Definition: fs.h:198
bool DumpMempool(const CTxMemPool &pool, const fs::path &dump_path, FopenFn mockable_fopen_function, bool skip_file_commit)
bool LoadMempool(CTxMemPool &pool, const fs::path &load_path, Chainstate &active_chainstate, FopenFn mockable_fopen_function)