mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-15 11:36:00 -05:00
wallet: OutputGroup, remove unused effective_feerate member
This commit is contained in:
parent
99034b2b72
commit
a9aa04183c
1 changed files with 0 additions and 3 deletions
|
@ -222,8 +222,6 @@ struct OutputGroup
|
||||||
CAmount effective_value{0};
|
CAmount effective_value{0};
|
||||||
/** The fee to spend these UTXOs at the effective feerate. */
|
/** The fee to spend these UTXOs at the effective feerate. */
|
||||||
CAmount fee{0};
|
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. */
|
/** The fee to spend these UTXOs at the long term feerate. */
|
||||||
CAmount long_term_fee{0};
|
CAmount long_term_fee{0};
|
||||||
/** The feerate for spending a created change output eventually (i.e. not urgently, and thus at
|
/** The feerate for spending a created change output eventually (i.e. not urgently, and thus at
|
||||||
|
@ -238,7 +236,6 @@ struct OutputGroup
|
||||||
|
|
||||||
OutputGroup() {}
|
OutputGroup() {}
|
||||||
OutputGroup(const CoinSelectionParams& params) :
|
OutputGroup(const CoinSelectionParams& params) :
|
||||||
m_effective_feerate(params.m_effective_feerate),
|
|
||||||
m_long_term_feerate(params.m_long_term_feerate),
|
m_long_term_feerate(params.m_long_term_feerate),
|
||||||
m_subtract_fee_outputs(params.m_subtract_fee_outputs)
|
m_subtract_fee_outputs(params.m_subtract_fee_outputs)
|
||||||
{}
|
{}
|
||||||
|
|
Loading…
Add table
Reference in a new issue