mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
change type of various bare chars to bool that are only used as bool (and never serialized)
This commit is contained in:
@@ -696,7 +696,7 @@ public:
|
|||||||
int nIndex;
|
int nIndex;
|
||||||
|
|
||||||
// memory only
|
// memory only
|
||||||
mutable char fMerkleVerified;
|
mutable bool fMerkleVerified;
|
||||||
|
|
||||||
|
|
||||||
CMerkleTx()
|
CMerkleTx()
|
||||||
|
|||||||
@@ -317,10 +317,10 @@ public:
|
|||||||
std::vector<char> vfSpent; // which outputs are already spent
|
std::vector<char> vfSpent; // which outputs are already spent
|
||||||
|
|
||||||
// memory only
|
// memory only
|
||||||
mutable char fDebitCached;
|
mutable bool fDebitCached;
|
||||||
mutable char fCreditCached;
|
mutable bool fCreditCached;
|
||||||
mutable char fAvailableCreditCached;
|
mutable bool fAvailableCreditCached;
|
||||||
mutable char fChangeCached;
|
mutable bool fChangeCached;
|
||||||
mutable int64 nDebitCached;
|
mutable int64 nDebitCached;
|
||||||
mutable int64 nCreditCached;
|
mutable int64 nCreditCached;
|
||||||
mutable int64 nAvailableCreditCached;
|
mutable int64 nAvailableCreditCached;
|
||||||
|
|||||||
Reference in New Issue
Block a user