diff options
| author | Pieter Wuille <[email protected]> | 2015-11-25 13:04:52 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-11-30 14:09:04 +0100 |
| commit | ecc7c82361d98268d86b399dac76ca6d99bde889 (patch) | |
| tree | fdb697ed742d1d48301da334837fecdb736856a1 /src/coincontrol.h | |
| parent | Merge pull request #7112 (diff) | |
| download | discoin-ecc7c82361d98268d86b399dac76ca6d99bde889.tar.xz discoin-ecc7c82361d98268d86b399dac76ca6d99bde889.zip | |
Move fPayAtLeastCustomFee function to CC
Diffstat (limited to 'src/coincontrol.h')
| -rw-r--r-- | src/coincontrol.h | 3 |
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 |