aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/coinselection.h
diff options
context:
space:
mode:
authorfurszy <matiasfurszyfer@protonmail.com>2023-02-13 20:08:38 -0300
committerfurszy <matiasfurszyfer@protonmail.com>2023-03-08 10:32:30 -0300
commita9aa04183c4502c23ec924e9c8944b7c90f9f5c2 (patch)
treef0ffc55c8dd28ac509e07d7c2b382ec9c4f71230 /src/wallet/coinselection.h
parent99034b2b72728def57204abe518e0360d9675437 (diff)
downloadbitcoin-a9aa04183c4502c23ec924e9c8944b7c90f9f5c2.tar.xz
wallet: OutputGroup, remove unused effective_feerate member
Diffstat (limited to 'src/wallet/coinselection.h')
-rw-r--r--src/wallet/coinselection.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/coinselection.h b/src/wallet/coinselection.h
index 3abd22c207..cd03b7d224 100644
--- a/src/wallet/coinselection.h
+++ b/src/wallet/coinselection.h
@@ -222,8 +222,6 @@ struct OutputGroup
CAmount effective_value{0};
/** The fee to spend these UTXOs at the effective feerate. */
CAmount fee{0};
- /** The target feerate of the transaction we're trying to build. */
- CFeeRate m_effective_feerate{0};
/** The fee to spend these UTXOs at the long term feerate. */
CAmount long_term_fee{0};
/** The feerate for spending a created change output eventually (i.e. not urgently, and thus at
@@ -238,7 +236,6 @@ struct OutputGroup
OutputGroup() {}
OutputGroup(const CoinSelectionParams& params) :
- m_effective_feerate(params.m_effective_feerate),
m_long_term_feerate(params.m_long_term_feerate),
m_subtract_fee_outputs(params.m_subtract_fee_outputs)
{}