![]() |
Bitcoin Core
21.99.0
P2P Digital Currency
|
Coin Control Features. More...
#include <coincontrol.h>
Public Member Functions | |
CCoinControl () | |
void | SetNull () |
bool | HasSelected () const |
bool | IsSelected (const COutPoint &output) const |
void | Select (const COutPoint &output) |
void | UnSelect (const COutPoint &output) |
void | UnSelectAll () |
void | ListSelected (std::vector< COutPoint > &vOutpoints) const |
Public Attributes | |
CTxDestination | destChange |
Custom change destination, if not set an address is generated. More... | |
std::optional< OutputType > | m_change_type |
Override the default change type if set, ignored if destChange is set. More... | |
bool | m_add_inputs |
If false, only selected inputs are used. More... | |
bool | fAllowOtherInputs |
If false, allows unselected inputs, but requires all selected inputs be used. More... | |
bool | fAllowWatchOnly |
Includes watch only addresses which are solvable. More... | |
bool | fOverrideFeeRate |
Override automatic min/max checks on fee, m_feerate must be set if true. More... | |
std::optional< CFeeRate > | m_feerate |
Override the wallet's m_pay_tx_fee if set. More... | |
std::optional< unsigned int > | m_confirm_target |
Override the default confirmation target if set. More... | |
std::optional< bool > | m_signal_bip125_rbf |
Override the wallet's m_signal_rbf if set. More... | |
bool | m_avoid_partial_spends |
Avoid partial use of funds sent to a given address. More... | |
bool | m_avoid_address_reuse |
Forbids inclusion of dirty (previously used) addresses. More... | |
FeeEstimateMode | m_fee_mode |
Fee estimation mode to control arguments to estimateSmartFee. More... | |
int | m_min_depth = DEFAULT_MIN_DEPTH |
Minimum chain depth value for coin availability. More... | |
int | m_max_depth = DEFAULT_MAX_DEPTH |
Maximum chain depth value for coin availability. More... | |
Private Attributes | |
std::set< COutPoint > | setSelected |
Coin Control Features.
Definition at line 23 of file coincontrol.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
void CCoinControl::SetNull | ( | ) |
Definition at line 9 of file coincontrol.cpp.
|
inline |
|
inline |
CTxDestination CCoinControl::destChange |
Custom change destination, if not set an address is generated.
Definition at line 27 of file coincontrol.h.
bool CCoinControl::fAllowOtherInputs |
If false, allows unselected inputs, but requires all selected inputs be used.
Definition at line 33 of file coincontrol.h.
bool CCoinControl::fAllowWatchOnly |
Includes watch only addresses which are solvable.
Definition at line 35 of file coincontrol.h.
bool CCoinControl::fOverrideFeeRate |
Override automatic min/max checks on fee, m_feerate must be set if true.
Definition at line 37 of file coincontrol.h.
bool CCoinControl::m_add_inputs |
If false, only selected inputs are used.
Definition at line 31 of file coincontrol.h.
bool CCoinControl::m_avoid_address_reuse |
Forbids inclusion of dirty (previously used) addresses.
Definition at line 47 of file coincontrol.h.
bool CCoinControl::m_avoid_partial_spends |
Avoid partial use of funds sent to a given address.
Definition at line 45 of file coincontrol.h.
std::optional<OutputType> CCoinControl::m_change_type |
Override the default change type if set, ignored if destChange is set.
Definition at line 29 of file coincontrol.h.
std::optional<unsigned int> CCoinControl::m_confirm_target |
Override the default confirmation target if set.
Definition at line 41 of file coincontrol.h.
FeeEstimateMode CCoinControl::m_fee_mode |
Fee estimation mode to control arguments to estimateSmartFee.
Definition at line 49 of file coincontrol.h.
std::optional<CFeeRate> CCoinControl::m_feerate |
Override the wallet's m_pay_tx_fee if set.
Definition at line 39 of file coincontrol.h.
int CCoinControl::m_max_depth = DEFAULT_MAX_DEPTH |
Maximum chain depth value for coin availability.
Definition at line 53 of file coincontrol.h.
int CCoinControl::m_min_depth = DEFAULT_MIN_DEPTH |
Minimum chain depth value for coin availability.
Definition at line 51 of file coincontrol.h.
std::optional<bool> CCoinControl::m_signal_bip125_rbf |
Override the wallet's m_signal_rbf if set.
Definition at line 43 of file coincontrol.h.
|
private |
Definition at line 93 of file coincontrol.h.