diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-04-21 13:31:08 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-04-21 18:16:11 +0200 |
| commit | cdcc319c2dc63414d5a60a1ee7b8b4a61b77fa09 (patch) | |
| tree | d9e35d3a8170bf414c0223db6c565f337b36d56d /src/main.h | |
| parent | Add explicit numeric constant value for all opcodes (diff) | |
| download | discoin-cdcc319c2dc63414d5a60a1ee7b8b4a61b77fa09.tar.xz discoin-cdcc319c2dc63414d5a60a1ee7b8b4a61b77fa09.zip | |
change type of various bare chars to bool that are only used as bool (and never serialized)
Diffstat (limited to 'src/main.h')
| -rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index d12a3cc25..a814092ac 100644 --- a/src/main.h +++ b/src/main.h @@ -696,7 +696,7 @@ public: int nIndex; // memory only - mutable char fMerkleVerified; + mutable bool fMerkleVerified; CMerkleTx() |