aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-04-21 13:31:08 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-04-21 18:16:11 +0200
commitcdcc319c2dc63414d5a60a1ee7b8b4a61b77fa09 (patch)
treed9e35d3a8170bf414c0223db6c565f337b36d56d /src/main.h
parent7be8b2ff9c9ea425bdda2ad1a702699b3d2da9f8 (diff)
downloadbitcoin-cdcc319c2dc63414d5a60a1ee7b8b4a61b77fa09.tar.xz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index d12a3cc258..a814092ac2 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()