diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2018-05-01 12:19:47 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2018-05-03 11:02:01 -0700 |
commit | 4e91820531889e309dc4335fe0de8229c6426040 (patch) | |
tree | 08b1907d000ec6c5a904936c6abdbd4c9f654ff6 /src/script/ismine.h | |
parent | 6d714c3419b368671bd071a8992950c3dc00e613 (diff) |
Make IsMine stop distinguishing solvable/unsolvable
Diffstat (limited to 'src/script/ismine.h')
-rw-r--r-- | src/script/ismine.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/script/ismine.h b/src/script/ismine.h index 8573bdfbd2..a15768aecb 100644 --- a/src/script/ismine.h +++ b/src/script/ismine.h @@ -17,12 +17,8 @@ class CScript; enum isminetype { ISMINE_NO = 0, - //! Indicates that we don't know how to create a scriptSig that would solve this if we were given the appropriate private keys - ISMINE_WATCH_UNSOLVABLE = 1, - //! Indicates that we know how to create a scriptSig that would solve this if we were given the appropriate private keys - ISMINE_WATCH_SOLVABLE = 2, - ISMINE_WATCH_ONLY = ISMINE_WATCH_SOLVABLE | ISMINE_WATCH_UNSOLVABLE, - ISMINE_SPENDABLE = 4, + ISMINE_WATCH_ONLY = 1, + ISMINE_SPENDABLE = 2, ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE }; /** used for bitflags of isminetype */ |