2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2011-2017 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.
|
|
|
|
|
2016-10-21 11:47:10 +02:00
|
|
|
#ifndef BITCOIN_WALLET_COINCONTROL_H
|
|
|
|
#define BITCOIN_WALLET_COINCONTROL_H
|
2013-08-12 17:03:03 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <policy/feerate.h>
|
|
|
|
#include <policy/fees.h>
|
|
|
|
#include <primitives/transaction.h>
|
|
|
|
#include <wallet/wallet.h>
|
2013-08-12 17:03:03 +02:00
|
|
|
|
2017-06-28 23:23:46 +02:00
|
|
|
#include <boost/optional.hpp>
|
|
|
|
|
2013-08-12 17:03:03 +02:00
|
|
|
/** Coin Control Features. */
|
|
|
|
class CCoinControl
|
|
|
|
{
|
|
|
|
public:
|
2018-01-15 17:10:13 +01:00
|
|
|
//! Custom change destination, if not set an address is generated
|
2013-08-12 17:03:03 +02:00
|
|
|
CTxDestination destChange;
|
2018-02-11 03:06:35 +01:00
|
|
|
//! Override the default change type if set, ignored if destChange is set
|
|
|
|
boost::optional<OutputType> m_change_type;
|
2015-04-25 03:27:00 +02:00
|
|
|
//! If false, allows unselected inputs, but requires all selected inputs be used
|
|
|
|
bool fAllowOtherInputs;
|
2015-08-08 18:27:19 +02:00
|
|
|
//! Includes watch only addresses which match the ISMINE_WATCH_SOLVABLE criteria
|
2015-04-24 06:42:49 +02:00
|
|
|
bool fAllowWatchOnly;
|
2017-06-28 23:23:46 +02:00
|
|
|
//! Override automatic min/max checks on fee, m_feerate must be set if true
|
2016-05-06 11:01:50 +02:00
|
|
|
bool fOverrideFeeRate;
|
2017-06-28 23:23:46 +02:00
|
|
|
//! Override the default payTxFee if set
|
|
|
|
boost::optional<CFeeRate> m_feerate;
|
|
|
|
//! Override the default confirmation target if set
|
|
|
|
boost::optional<unsigned int> m_confirm_target;
|
2015-12-03 09:53:23 +01:00
|
|
|
//! Signal BIP-125 replace by fee.
|
|
|
|
bool signalRbf;
|
2017-06-13 17:28:30 +02:00
|
|
|
//! Fee estimation mode to control arguments to estimateSmartFee
|
|
|
|
FeeEstimateMode m_fee_mode;
|
2013-08-12 17:03:03 +02:00
|
|
|
|
|
|
|
CCoinControl()
|
|
|
|
{
|
|
|
|
SetNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetNull()
|
|
|
|
{
|
|
|
|
destChange = CNoDestination();
|
2018-02-11 03:06:35 +01:00
|
|
|
m_change_type.reset();
|
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();
|
2017-06-29 17:29:34 +02:00
|
|
|
m_feerate.reset();
|
2016-05-06 11:01:50 +02:00
|
|
|
fOverrideFeeRate = false;
|
2017-06-29 17:29:34 +02:00
|
|
|
m_confirm_target.reset();
|
2015-12-03 09:53:23 +01:00
|
|
|
signalRbf = fWalletRbf;
|
2017-06-13 17:28:30 +02:00
|
|
|
m_fee_mode = FeeEstimateMode::UNSET;
|
2013-08-12 17:03:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool HasSelected() const
|
|
|
|
{
|
|
|
|
return (setSelected.size() > 0);
|
|
|
|
}
|
|
|
|
|
2016-02-11 02:07:22 +01:00
|
|
|
bool IsSelected(const COutPoint& output) const
|
2013-08-12 17:03:03 +02:00
|
|
|
{
|
2016-02-11 02:07:22 +01:00
|
|
|
return (setSelected.count(output) > 0);
|
2013-08-12 17:03:03 +02:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2016-10-21 11:47:10 +02:00
|
|
|
#endif // BITCOIN_WALLET_COINCONTROL_H
|