2015-12-13 13:58:29 -03:00
|
|
|
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-16 13:37:31 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_COINCONTROL_H
|
|
|
|
#define BITCOIN_COINCONTROL_H
|
2013-08-12 11:03:03 -04:00
|
|
|
|
2014-11-18 18:03:02 -03:00
|
|
|
#include "primitives/transaction.h"
|
2013-08-12 11:03:03 -04:00
|
|
|
|
|
|
|
/** Coin Control Features. */
|
|
|
|
class CCoinControl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CTxDestination destChange;
|
2015-04-24 22:27:00 -03:00
|
|
|
//! If false, allows unselected inputs, but requires all selected inputs be used
|
|
|
|
bool fAllowOtherInputs;
|
2015-08-08 13:27:19 -03:00
|
|
|
//! Includes watch only addresses which match the ISMINE_WATCH_SOLVABLE criteria
|
2015-04-24 01:42:49 -03:00
|
|
|
bool fAllowWatchOnly;
|
2015-11-25 09:04:52 -03:00
|
|
|
//! Minimum absolute fee (not per kilobyte)
|
|
|
|
CAmount nMinimumTotalFee;
|
2013-08-12 11:03:03 -04:00
|
|
|
|
|
|
|
CCoinControl()
|
|
|
|
{
|
|
|
|
SetNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetNull()
|
|
|
|
{
|
|
|
|
destChange = CNoDestination();
|
2015-04-24 22:27:00 -03:00
|
|
|
fAllowOtherInputs = false;
|
2015-04-24 01:42:49 -03:00
|
|
|
fAllowWatchOnly = false;
|
2013-08-12 11:03:03 -04:00
|
|
|
setSelected.clear();
|
2015-11-25 09:04:52 -03:00
|
|
|
nMinimumTotalFee = 0;
|
2013-08-12 11:03:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool HasSelected() const
|
|
|
|
{
|
|
|
|
return (setSelected.size() > 0);
|
|
|
|
}
|
|
|
|
|
2016-02-10 22:07:22 -03:00
|
|
|
bool IsSelected(const COutPoint& output) const
|
2013-08-12 11:03:03 -04:00
|
|
|
{
|
2016-02-10 22:07:22 -03:00
|
|
|
return (setSelected.count(output) > 0);
|
2013-08-12 11:03:03 -04:00
|
|
|
}
|
|
|
|
|
2014-11-08 20:09:06 -03:00
|
|
|
void Select(const COutPoint& output)
|
2013-08-12 11:03:03 -04:00
|
|
|
{
|
|
|
|
setSelected.insert(output);
|
|
|
|
}
|
|
|
|
|
2014-11-08 20:09:06 -03:00
|
|
|
void UnSelect(const COutPoint& output)
|
2013-08-12 11:03:03 -04:00
|
|
|
{
|
|
|
|
setSelected.erase(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnSelectAll()
|
|
|
|
{
|
|
|
|
setSelected.clear();
|
|
|
|
}
|
|
|
|
|
2015-04-24 22:27:00 -03:00
|
|
|
void ListSelected(std::vector<COutPoint>& vOutpoints) const
|
2013-08-12 11:03:03 -04:00
|
|
|
{
|
|
|
|
vOutpoints.assign(setSelected.begin(), setSelected.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::set<COutPoint> setSelected;
|
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_COINCONTROL_H
|