Browse Source

Fixes CID 1352686 uninitialized scalar variable.

pull/4/head
Simon 8 years ago
parent
commit
43873535d4
  1. 2
      src/txmempool.h

2
src/txmempool.h

@ -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;

Loading…
Cancel
Save