mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py insert src/policy/fees_args.cpp -END VERIFY SCRIPT-
16 lines
446 B
C++
16 lines
446 B
C++
// Copyright (c) 2021 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 <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;
|
|
}
|