mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
Small tweaks to CCoinControl for fundrawtransaction
This commit is contained in:
parent
9b4e7d9a5e
commit
2d84e22703
@ -12,6 +12,8 @@ class CCoinControl
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CTxDestination destChange;
|
CTxDestination destChange;
|
||||||
|
//! If false, allows unselected inputs, but requires all selected inputs be used
|
||||||
|
bool fAllowOtherInputs;
|
||||||
|
|
||||||
CCoinControl()
|
CCoinControl()
|
||||||
{
|
{
|
||||||
@ -21,6 +23,7 @@ public:
|
|||||||
void SetNull()
|
void SetNull()
|
||||||
{
|
{
|
||||||
destChange = CNoDestination();
|
destChange = CNoDestination();
|
||||||
|
fAllowOtherInputs = false;
|
||||||
setSelected.clear();
|
setSelected.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,7 +53,7 @@ public:
|
|||||||
setSelected.clear();
|
setSelected.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ListSelected(std::vector<COutPoint>& vOutpoints)
|
void ListSelected(std::vector<COutPoint>& vOutpoints) const
|
||||||
{
|
{
|
||||||
vOutpoints.assign(setSelected.begin(), setSelected.end());
|
vOutpoints.assign(setSelected.begin(), setSelected.end());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user