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