Return more stake outputs, including those thought to be change, fix cheatcatcher error reporting
This commit is contained in:
@@ -18,7 +18,9 @@ enum isminetype
|
||||
ISMINE_NO = 0,
|
||||
ISMINE_WATCH_ONLY = 1,
|
||||
ISMINE_SPENDABLE = 2,
|
||||
ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE
|
||||
ISMINE_CHANGE = 4,
|
||||
ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE,
|
||||
ISMINE_ALLANDCHANGE = ISMINE_ALL | ISMINE_CHANGE
|
||||
};
|
||||
/** used for bitflags of isminetype */
|
||||
typedef uint8_t isminefilter;
|
||||
|
||||
Reference in New Issue
Block a user