diff --git a/src/coincontrol.h b/src/coincontrol.h index 92fae9847c..b1efb96a32 100644 --- a/src/coincontrol.h +++ b/src/coincontrol.h @@ -12,6 +12,7 @@ class CCoinControl { public: CTxDestination destChange; + bool fAllowOtherInputs; CCoinControl() { @@ -21,6 +22,7 @@ public: void SetNull() { destChange = CNoDestination(); + fAllowOtherInputs = false; setSelected.clear(); } @@ -50,7 +52,7 @@ public: setSelected.clear(); } - void ListSelected(std::vector& vOutpoints) + void ListSelected(std::vector& vOutpoints) const { vOutpoints.assign(setSelected.begin(), setSelected.end()); }