diff options
| author | JaSK <[email protected]> | 2014-03-29 05:15:28 +0100 |
|---|---|---|
| committer | JaSK <[email protected]> | 2014-07-02 15:48:38 +0200 |
| commit | ffd40da361639faeef405c7e4a504a340d77aa5b (patch) | |
| tree | 66131441451335db0f91a7d19cfddb9665aa82f1 /src/script.h | |
| parent | qt: Hide unspendable outputs in coin control (diff) | |
| download | discoin-ffd40da361639faeef405c7e4a504a340d77aa5b.tar.xz discoin-ffd40da361639faeef405c7e4a504a340d77aa5b.zip | |
Watchonly balances are shown separately in gui.
Diffstat (limited to 'src/script.h')
| -rw-r--r-- | src/script.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script.h b/src/script.h index 1db758094..56c7d01d4 100644 --- a/src/script.h +++ b/src/script.h @@ -201,6 +201,8 @@ enum isminetype MINE_WATCH_ONLY = 1, MINE_SPENDABLE = 2, }; +/** used for bitflags of isminetype */ +typedef uint8_t isminefilter; // Mandatory script verification flags that all new blocks must comply with for // them to be valid. (but old blocks may not comply with) Currently just P2SH, |