diff options
| author | JaSK <[email protected]> | 2014-06-20 05:02:14 +0200 |
|---|---|---|
| committer | JaSK <[email protected]> | 2014-07-02 15:48:40 +0200 |
| commit | 519dd1c89afa2b7d0f2720eb70cd11de23d61006 (patch) | |
| tree | 56051a7e5b4b3476d9cf36098dcab57fdf5c099e /src/script.h | |
| parent | Fixed some stuff in TransactionDesc (diff) | |
| download | discoin-519dd1c89afa2b7d0f2720eb70cd11de23d61006.tar.xz discoin-519dd1c89afa2b7d0f2720eb70cd11de23d61006.zip | |
Added MINE_ALL = (spendable|watchonly)
Diffstat (limited to 'src/script.h')
| -rw-r--r-- | src/script.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script.h b/src/script.h index edba5757e..790822625 100644 --- a/src/script.h +++ b/src/script.h @@ -200,6 +200,7 @@ enum isminetype MINE_NO = 0, MINE_WATCH_ONLY = 1, MINE_SPENDABLE = 2, + MINE_ALL = MINE_WATCH_ONLY | MINE_SPENDABLE }; /** used for bitflags of isminetype */ typedef uint8_t isminefilter; |