wallet: enable avoid_reuse feature

This commit is contained in:
Karl-Johan Alm
2018-09-13 13:53:19 +09:00
parent eec15662fa
commit 8247a0da3a
3 changed files with 65 additions and 14 deletions

View File

@@ -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 */