Skip to content

Commit a9aa041

Browse files
committed
wallet: OutputGroup, remove unused effective_feerate member
1 parent 99034b2 commit a9aa041

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/wallet/coinselection.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,6 @@ struct OutputGroup
222222
CAmount effective_value{0};
223223
/** The fee to spend these UTXOs at the effective feerate. */
224224
CAmount fee{0};
225-
/** The target feerate of the transaction we're trying to build. */
226-
CFeeRate m_effective_feerate{0};
227225
/** The fee to spend these UTXOs at the long term feerate. */
228226
CAmount long_term_fee{0};
229227
/** The feerate for spending a created change output eventually (i.e. not urgently, and thus at
@@ -238,7 +236,6 @@ struct OutputGroup
238236

239237
OutputGroup() {}
240238
OutputGroup(const CoinSelectionParams& params) :
241-
m_effective_feerate(params.m_effective_feerate),
242239
m_long_term_feerate(params.m_long_term_feerate),
243240
m_subtract_fee_outputs(params.m_subtract_fee_outputs)
244241
{}

0 commit comments

Comments
 (0)