2022-07-12 15:54:11 -04:00
|
|
|
// Copyright (c) 2022 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <node/mempool_persist_args.h>
|
|
|
|
|
2023-03-23 12:23:29 +01:00
|
|
|
#include <common/args.h>
|
2023-03-15 11:18:06 +01:00
|
|
|
#include <util/fs.h>
|
2022-07-12 15:54:11 -04:00
|
|
|
#include <validation.h>
|
|
|
|
|
|
|
|
namespace node {
|
|
|
|
|
|
|
|
bool ShouldPersistMempool(const ArgsManager& argsman)
|
|
|
|
{
|
|
|
|
return argsman.GetBoolArg("-persistmempool", DEFAULT_PERSIST_MEMPOOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
fs::path MempoolPath(const ArgsManager& argsman)
|
|
|
|
{
|
|
|
|
return argsman.GetDataDirNet() / "mempool.dat";
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace node
|