aboutsummaryrefslogtreecommitdiff
path: root/src/bench
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2021-03-16 16:19:03 -0400
committerAndrew Chow <achow101-github@achow101.com>2021-03-16 17:16:57 -0400
commitf9cd2bfbccb7a2b8ff07cec5f6d2adbeca5f07c3 (patch)
tree85459ff7982c0c4afd4023ba37cbb1a72f5accec /src/bench
parentbdd0c2934b7f389ffcfae3b602ee3ecee8581acd (diff)
downloadbitcoin-f9cd2bfbccb7a2b8ff07cec5f6d2adbeca5f07c3.tar.xz
Rename CoinSelectionParams::effective_fee to m_effective_feerate
It's a feerate, not a fee. Also follow the style guide for member names.
Diffstat (limited to 'src/bench')
-rw-r--r--src/bench/coin_selection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/coin_selection.cpp b/src/bench/coin_selection.cpp
index 56fd16e0fd..0aca690e15 100644
--- a/src/bench/coin_selection.cpp
+++ b/src/bench/coin_selection.cpp
@@ -50,7 +50,7 @@ static void CoinSelection(benchmark::Bench& bench)
const CoinEligibilityFilter filter_standard(1, 6, 0);
const CoinSelectionParams coin_selection_params(/* use_bnb= */ true, /* change_output_size= */ 34,
- /* change_spend_size= */ 148, /* effective_fee= */ CFeeRate(0),
+ /* change_spend_size= */ 148, /* effective_feerate= */ CFeeRate(0),
/* long_term_feerate= */ CFeeRate(0), /* discard_feerate= */ CFeeRate(0),
/* tx_no_inputs_size= */ 0, /* avoid_partial= */ false);
bench.run([&] {