aboutsummaryrefslogtreecommitdiff
path: root/src/coincontrol.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2015-11-25 13:04:52 +0100
committerJonas Schnelli <[email protected]>2015-11-30 14:09:04 +0100
commitecc7c82361d98268d86b399dac76ca6d99bde889 (patch)
treefdb697ed742d1d48301da334837fecdb736856a1 /src/coincontrol.h
parentMerge pull request #7112 (diff)
downloaddiscoin-ecc7c82361d98268d86b399dac76ca6d99bde889.tar.xz
discoin-ecc7c82361d98268d86b399dac76ca6d99bde889.zip
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 bc965f9e1..3945644ce 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