aboutsummaryrefslogtreecommitdiff
path: root/src/util/fees.h
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-01-20 16:25:14 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-02-01 11:33:35 +0100
commitfa451d4b60ee0538b3ea6b946740a64734b35b6d (patch)
tree76f655f4d1fcd30c7d475ea4819e9a824f5cc996 /src/util/fees.h
parente1bf5470f919cf212703466411968916db8ae61f (diff)
downloadbitcoin-fa451d4b60ee0538b3ea6b946740a64734b35b6d.tar.xz
Fix clang-tidy readability-const-return-type violations
Diffstat (limited to 'src/util/fees.h')
-rw-r--r--src/util/fees.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/fees.h b/src/util/fees.h
index 9ef2389d3e..10ba1e4f85 100644
--- a/src/util/fees.h
+++ b/src/util/fees.h
@@ -13,6 +13,6 @@ 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();
+std::string InvalidEstimateModeErrorMessage();
#endif // BITCOIN_UTIL_FEES_H