Small tweaks to CCoinControl for fundrawtransaction
This commit is contained in:
parent
9b4e7d9a5e
commit
2d84e22703
1 changed files with 4 additions and 1 deletions
|
@ -12,6 +12,8 @@ class CCoinControl
|
|||
{
|
||||
public:
|
||||
CTxDestination destChange;
|
||||
//! If false, allows unselected inputs, but requires all selected inputs be used
|
||||
bool fAllowOtherInputs;
|
||||
|
||||
CCoinControl()
|
||||
{
|
||||
|
@ -21,6 +23,7 @@ public:
|
|||
void SetNull()
|
||||
{
|
||||
destChange = CNoDestination();
|
||||
fAllowOtherInputs = false;
|
||||
setSelected.clear();
|
||||
}
|
||||
|
||||
|
@ -50,7 +53,7 @@ public:
|
|||
setSelected.clear();
|
||||
}
|
||||
|
||||
void ListSelected(std::vector<COutPoint>& vOutpoints)
|
||||
void ListSelected(std::vector<COutPoint>& vOutpoints) const
|
||||
{
|
||||
vOutpoints.assign(setSelected.begin(), setSelected.end());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue