diff options
author | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2018-09-13 13:53:19 +0900 |
---|---|---|
committer | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2019-05-29 18:40:31 +0900 |
commit | 8247a0da3a46d7c38943ee0304343ab7465305bd (patch) | |
tree | fad1d713d2e9e71438b1805dc5a0d6a795c85719 /src/script | |
parent | eec15662fad917b169f5e3b8baaf4301dcf00a7b (diff) |
wallet: enable avoid_reuse feature
Diffstat (limited to 'src/script')
-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 */ |