forked from highfidelity/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6a86c24 Coin Control Features (Cozz Lovan) 8dfd8c6 pass nBytes as parameter to GetMinFee(..) (Cozz Lovan)
- Loading branch information
Showing
25 changed files
with
2,562 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#ifndef COINCONTROL_H | ||
#define COINCONTROL_H | ||
|
||
#include "core.h" | ||
|
||
/** Coin Control Features. */ | ||
class CCoinControl | ||
{ | ||
public: | ||
CTxDestination destChange; | ||
|
||
CCoinControl() | ||
{ | ||
SetNull(); | ||
} | ||
|
||
void SetNull() | ||
{ | ||
destChange = CNoDestination(); | ||
setSelected.clear(); | ||
} | ||
|
||
bool HasSelected() const | ||
{ | ||
return (setSelected.size() > 0); | ||
} | ||
|
||
bool IsSelected(const uint256& hash, unsigned int n) const | ||
{ | ||
COutPoint outpt(hash, n); | ||
return (setSelected.count(outpt) > 0); | ||
} | ||
|
||
void Select(COutPoint& output) | ||
{ | ||
setSelected.insert(output); | ||
} | ||
|
||
void UnSelect(COutPoint& output) | ||
{ | ||
setSelected.erase(output); | ||
} | ||
|
||
void UnSelectAll() | ||
{ | ||
setSelected.clear(); | ||
} | ||
|
||
void ListSelected(std::vector<COutPoint>& vOutpoints) | ||
{ | ||
vOutpoints.assign(setSelected.begin(), setSelected.end()); | ||
} | ||
|
||
private: | ||
std::set<COutPoint> setSelected; | ||
|
||
}; | ||
|
||
#endif // COINCONTROL_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.