aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_ismine.h
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2015-08-08 09:26:07 -0700
committerMatt Corallo <git@bluematt.me>2015-08-08 09:30:53 -0700
commit428a898acd37e1c0afa21623a8fe5728859067be (patch)
treefb4ab1a072da52a0b557fa765e0f671b1b845955 /src/wallet/wallet_ismine.h
parent6bdb474dc9dd34e1a5b13ce9494a936cba77e027 (diff)
downloadbitcoin-428a898acd37e1c0afa21623a8fe5728859067be.tar.xz
SQUASH "Add have-pubkey distinction to ISMINE flags"
Diffstat (limited to 'src/wallet/wallet_ismine.h')
-rw-r--r--src/wallet/wallet_ismine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/wallet_ismine.h b/src/wallet/wallet_ismine.h
index 12afad1751..ec9dcddd5a 100644
--- a/src/wallet/wallet_ismine.h
+++ b/src/wallet/wallet_ismine.h
@@ -17,10 +17,10 @@ enum isminetype
{
ISMINE_NO = 0,
//! Indicates that we dont know how to create a scriptSig that would solve this if we were given the appropriate private keys
- ISMINE_WATCH_NOPUBKEY = 1,
+ 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_PUBKEY = 2,
- ISMINE_WATCH_ONLY = ISMINE_WATCH_NOPUBKEY | ISMINE_WATCH_PUBKEY,
+ ISMINE_WATCH_SOLVABLE = 2,
+ ISMINE_WATCH_ONLY = ISMINE_WATCH_SOLVABLE | ISMINE_WATCH_UNSOLVABLE,
ISMINE_SPENDABLE = 4,
ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE
};