Return more stake outputs, including those thought to be change, fix cheatcatcher error reporting

This commit is contained in:
miketout
2018-11-01 19:23:23 -07:00
parent 99c94fc3f2
commit 73b4d69673
5 changed files with 7 additions and 6 deletions

View File

@@ -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;