Fixes CID 1352686 uninitialized scalar variable.

This commit is contained in:
Simon
2016-10-20 11:28:22 -07:00
parent 19bec4d9bb
commit 43873535d4

View File

@@ -92,7 +92,7 @@ private:
unsigned int nTransactionsUpdated; unsigned int nTransactionsUpdated;
CBlockPolicyEstimator* minerPolicyEstimator; CBlockPolicyEstimator* minerPolicyEstimator;
uint64_t totalTxSize; //! sum of all mempool tx' byte sizes uint64_t totalTxSize = 0; //! sum of all mempool tx' byte sizes
public: public:
mutable CCriticalSection cs; mutable CCriticalSection cs;