aboutsummaryrefslogtreecommitdiff
path: root/src/coincontrol.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/coincontrol.h')
-rw-r--r--src/coincontrol.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/coincontrol.h b/src/coincontrol.h
index 6129397bc8..e33adc4d2b 100644
--- a/src/coincontrol.h
+++ b/src/coincontrol.h
@@ -18,7 +18,9 @@ public:
bool fAllowWatchOnly;
//! Minimum absolute fee (not per kilobyte)
CAmount nMinimumTotalFee;
- //! Feerate to use (0 = estimate fee with payTxFee fallback)
+ //! Override estimated feerate
+ bool fOverrideFeeRate;
+ //! Feerate to use if overrideFeeRate is true
CFeeRate nFeeRate;
CCoinControl()
@@ -34,6 +36,7 @@ public:
setSelected.clear();
nMinimumTotalFee = 0;
nFeeRate = CFeeRate(0);
+ fOverrideFeeRate = false;
}
bool HasSelected() const