Fixes CID 1352686 uninitialized scalar variable.

This commit is contained in:
Simon 2016-10-20 11:28:22 -07:00
parent 19bec4d9bb
commit 43873535d4
1 changed files with 1 additions and 1 deletions

View File

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