Skip to content

Commit 52585f8

Browse files
furszyjanus
authored andcommitted
wallet: OutputGroup, remove unused effective_feerate member
1 parent 35382b2 commit 52585f8

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
@@ -223,8 +223,6 @@ struct OutputGroup
223223
CAmount effective_value{0};
224224
/** The fee to spend these UTXOs at the effective feerate. */
225225
CAmount fee{0};
226-
/** The target feerate of the transaction we're trying to build. */
227-
CFeeRate m_effective_feerate{0};
228226
/** The fee to spend these UTXOs at the long term feerate. */
229227
CAmount long_term_fee{0};
230228
/** The feerate for spending a created change output eventually (i.e. not urgently, and thus at
@@ -239,7 +237,6 @@ struct OutputGroup
239237

240238
OutputGroup() {}
241239
OutputGroup(const CoinSelectionParams& params) :
242-
m_effective_feerate(params.m_effective_feerate),
243240
m_long_term_feerate(params.m_long_term_feerate),
244241
m_subtract_fee_outputs(params.m_subtract_fee_outputs)
245242
{}

0 commit comments

Comments
 (0)