aboutsummaryrefslogtreecommitdiff
path: root/src/policy/fees_args.cpp
blob: a3531153b5b4d8fd7c7d287a4960596a850a50a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}