aboutsummaryrefslogtreecommitdiff
path: root/src/script.h
diff options
context:
space:
mode:
authorJaSK <temp@temp.temp>2014-07-01 11:00:22 +0200
committerJaSK <temp@temp.temp>2014-07-02 15:48:40 +0200
commita3e192a3274817517671f624d5744297905e20d2 (patch)
tree33ad109f1fa040134cfd29b8c321614816db2978 /src/script.h
parent53a2148f0c182b83da255972acb3110a74e9957a (diff)
downloadbitcoin-a3e192a3274817517671f624d5744297905e20d2.tar.xz
replaced MINE_ with ISMINE_
Diffstat (limited to 'src/script.h')
-rw-r--r--src/script.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script.h b/src/script.h
index 790822625a..e36be2db9e 100644
--- a/src/script.h
+++ b/src/script.h
@@ -197,10 +197,10 @@ enum
/** IsMine() return codes */
enum isminetype
{
- MINE_NO = 0,
- MINE_WATCH_ONLY = 1,
- MINE_SPENDABLE = 2,
- MINE_ALL = MINE_WATCH_ONLY | MINE_SPENDABLE
+ ISMINE_NO = 0,
+ ISMINE_WATCH_ONLY = 1,
+ ISMINE_SPENDABLE = 2,
+ ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE
};
/** used for bitflags of isminetype */
typedef uint8_t isminefilter;