aboutsummaryrefslogtreecommitdiff
path: root/src/policy/fees.h
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2022-03-15 16:57:05 +0100
committerVasil Dimov <vd@FreeBSD.org>2022-04-18 10:40:07 +0200
commit8173f160e085186c9bcc7f3506205c309ee66af6 (patch)
tree7b8a20555e2e7e158551ab6f4dd1f81e1183740e /src/policy/fees.h
parent8b4ad203d06c5ded6ecebbd7277b29a442d88bcf (diff)
downloadbitcoin-8173f160e085186c9bcc7f3506205c309ee66af6.tar.xz
style: rename variables to match coding style
Rename the variables that were touched by the previous commit (split logical from style changes). minIncrementalFee -> min_incremental_fee minFeeLimit -> min_fee_limit bucketBoundary -> bucket_boundary feeset -> fee_set FeeFilterRounder::feeset -> FeeFilterRounder::m_fee_set
Diffstat (limited to 'src/policy/fees.h')
-rw-r--r--src/policy/fees.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/policy/fees.h b/src/policy/fees.h
index e7f45c3151..b44ba4dc7a 100644
--- a/src/policy/fees.h
+++ b/src/policy/fees.h
@@ -297,13 +297,13 @@ private:
public:
/** Create new FeeFilterRounder */
- explicit FeeFilterRounder(const CFeeRate& minIncrementalFee);
+ explicit FeeFilterRounder(const CFeeRate& min_incremental_fee);
/** Quantize a minimum fee for privacy purpose before broadcast. */
CAmount round(CAmount currentMinFee);
private:
- const std::set<double> feeset;
+ const std::set<double> m_fee_set;
Mutex m_insecure_rand_mutex;
FastRandomContext insecure_rand GUARDED_BY(m_insecure_rand_mutex);
};