aboutsummaryrefslogtreecommitdiff
path: root/src/coincontrol.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2015-11-25 13:04:52 +0100
committerJonas Schnelli <dev@jonasschnelli.ch>2015-11-30 14:09:04 +0100
commitecc7c82361d98268d86b399dac76ca6d99bde889 (patch)
treefdb697ed742d1d48301da334837fecdb736856a1 /src/coincontrol.h
parent96b802510da0750aabc4f3ba6750cb5ce76f2b8c (diff)
downloadbitcoin-ecc7c82361d98268d86b399dac76ca6d99bde889.tar.xz
Move fPayAtLeastCustomFee function to CC
Diffstat (limited to 'src/coincontrol.h')
-rw-r--r--src/coincontrol.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/coincontrol.h b/src/coincontrol.h
index bc965f9e19..3945644ce8 100644
--- a/src/coincontrol.h
+++ b/src/coincontrol.h
@@ -16,6 +16,8 @@ public:
bool fAllowOtherInputs;
//! Includes watch only addresses which match the ISMINE_WATCH_SOLVABLE criteria
bool fAllowWatchOnly;
+ //! Minimum absolute fee (not per kilobyte)
+ CAmount nMinimumTotalFee;
CCoinControl()
{
@@ -28,6 +30,7 @@ public:
fAllowOtherInputs = false;
fAllowWatchOnly = false;
setSelected.clear();
+ nMinimumTotalFee = 0;
}
bool HasSelected() const