diff options
Diffstat (limited to 'src/script/ismine.h')
-rw-r--r-- | src/script/ismine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/ismine.h b/src/script/ismine.h index 55e28e225a..da3da7e324 100644 --- a/src/script/ismine.h +++ b/src/script/ismine.h @@ -20,7 +20,9 @@ enum isminetype ISMINE_NO = 0, ISMINE_WATCH_ONLY = 1 << 0, ISMINE_SPENDABLE = 1 << 1, + ISMINE_USED = 1 << 2, ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE, + ISMINE_ALL_USED = ISMINE_ALL | ISMINE_USED, ISMINE_ENUM_ELEMENTS, }; /** used for bitflags of isminetype */ |