mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 06:12:37 -03:00
fa0074e2d8
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT-
18 lines
643 B
C++
18 lines
643 B
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#ifndef BITCOIN_UTIL_FEES_H
|
|
#define BITCOIN_UTIL_FEES_H
|
|
|
|
#include <string>
|
|
|
|
enum class FeeEstimateMode;
|
|
enum class FeeReason;
|
|
|
|
bool FeeModeFromString(const std::string& mode_string, FeeEstimateMode& fee_estimate_mode);
|
|
std::string StringForFeeReason(FeeReason reason);
|
|
std::string FeeModes(const std::string& delimiter);
|
|
const std::string InvalidEstimateModeErrorMessage();
|
|
|
|
#endif // BITCOIN_UTIL_FEES_H
|