diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-10-21 10:09:02 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-10-28 10:44:30 +0200 |
commit | 004168dcb75750ea3f30e1349e4802c20bf4b860 (patch) | |
tree | 4111b68b1d200d52ee99a602152716e82f51d6b7 /src/wallet/coincontrol.h | |
parent | fea5e05a638080d54a1962c058f13798c16af150 (diff) |
CoinControl: add option for custom confirmation target
Diffstat (limited to 'src/wallet/coincontrol.h')
-rw-r--r-- | src/wallet/coincontrol.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/coincontrol.h b/src/wallet/coincontrol.h index 78516770e6..08d23688ff 100644 --- a/src/wallet/coincontrol.h +++ b/src/wallet/coincontrol.h @@ -22,6 +22,8 @@ public: bool fOverrideFeeRate; //! Feerate to use if overrideFeeRate is true CFeeRate nFeeRate; + //! Override the default confirmation target, 0 = use default + int nConfirmTarget; CCoinControl() { @@ -37,6 +39,7 @@ public: nMinimumTotalFee = 0; nFeeRate = CFeeRate(0); fOverrideFeeRate = false; + nConfirmTarget = 0; } bool HasSelected() const |