BTCP-Rebase/src/wallet/coincontrol.h

86 lines
2.1 KiB
C
Raw Normal View History

// Copyright (c) 2011-2016 The Bitcoin Core developers
2014-12-12 20:09:33 -08:00
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_WALLET_COINCONTROL_H
#define BITCOIN_WALLET_COINCONTROL_H
2013-08-12 08:03:03 -07:00
#include "policy/feerate.h"
#include "policy/fees.h"
2014-11-18 13:03:02 -08:00
#include "primitives/transaction.h"
#include "wallet/wallet.h"
2013-08-12 08:03:03 -07:00
/** Coin Control Features. */
class CCoinControl
{
public:
CTxDestination destChange;
//! If false, allows unselected inputs, but requires all selected inputs be used
bool fAllowOtherInputs;
//! Includes watch only addresses which match the ISMINE_WATCH_SOLVABLE criteria
bool fAllowWatchOnly;
//! Override estimated feerate
bool fOverrideFeeRate;
//! Feerate to use if overrideFeeRate is true
CFeeRate nFeeRate;
//! Override the default confirmation target, 0 = use default
int nConfirmTarget;
//! Signal BIP-125 replace by fee.
bool signalRbf;
//! Fee estimation mode to control arguments to estimateSmartFee
FeeEstimateMode m_fee_mode;
2013-08-12 08:03:03 -07:00
CCoinControl()
{
SetNull();
}
void SetNull()
{
destChange = CNoDestination();
fAllowOtherInputs = false;
fAllowWatchOnly = false;
2013-08-12 08:03:03 -07:00
setSelected.clear();
nFeeRate = CFeeRate(0);
fOverrideFeeRate = false;
nConfirmTarget = 0;
signalRbf = fWalletRbf;
m_fee_mode = FeeEstimateMode::UNSET;
2013-08-12 08:03:03 -07:00
}
bool HasSelected() const
{
return (setSelected.size() > 0);
}
bool IsSelected(const COutPoint& output) const
2013-08-12 08:03:03 -07:00
{
return (setSelected.count(output) > 0);
2013-08-12 08:03:03 -07:00
}
2014-11-08 15:09:06 -08:00
void Select(const COutPoint& output)
2013-08-12 08:03:03 -07:00
{
setSelected.insert(output);
}
2014-11-08 15:09:06 -08:00
void UnSelect(const COutPoint& output)
2013-08-12 08:03:03 -07:00
{
setSelected.erase(output);
}
void UnSelectAll()
{
setSelected.clear();
}
void ListSelected(std::vector<COutPoint>& vOutpoints) const
2013-08-12 08:03:03 -07:00
{
vOutpoints.assign(setSelected.begin(), setSelected.end());
}
private:
std::set<COutPoint> setSelected;
};
#endif // BITCOIN_WALLET_COINCONTROL_H