mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-04 10:07:27 -05:00
13 lines
256 B
C++
13 lines
256 B
C++
|
#include <policy/fees_args.h>
|
||
|
|
||
|
#include <util/system.h>
|
||
|
|
||
|
namespace {
|
||
|
const char* FEE_ESTIMATES_FILENAME = "fee_estimates.dat";
|
||
|
} // namespace
|
||
|
|
||
|
fs::path FeeestPath(const ArgsManager& argsman)
|
||
|
{
|
||
|
return argsman.GetDataDirNet() / FEE_ESTIMATES_FILENAME;
|
||
|
}
|