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;
|
|
}
|