Fixes CID 1352698 uninitialized scalar field.

This commit is contained in:
Simon 2016-10-20 11:17:17 -07:00
parent 9a4127e74c
commit b1c1a32b3a
1 changed files with 4 additions and 4 deletions

View File

@ -66,6 +66,9 @@ class CTxMemPoolEntry;
* they've been outstanding.
*/
/** Decay of .998 is a half-life of 346 blocks or about 2.4 days */
static const double DEFAULT_DECAY = .998;
/**
* We will instantiate two instances of this class, one to track transactions
* that were included in a block due to fee, and one for tx's included due to
@ -105,7 +108,7 @@ private:
// Combine the total value with the tx counts to calculate the avg fee/priority per bucket
std::string dataTypeString;
double decay;
double decay = DEFAULT_DECAY;
// Mempool counts of outstanding transactions
// For each bucket X, track the number of transactions in the mempool
@ -179,9 +182,6 @@ public:
/** Track confirm delays up to 25 blocks, can't estimate beyond that */
static const unsigned int MAX_BLOCK_CONFIRMS = 25;
/** Decay of .998 is a half-life of 346 blocks or about 2.4 days */
static const double DEFAULT_DECAY = .998;
/** Require greater than 85% of X fee transactions to be confirmed within Y blocks for X to be big enough */
static const double MIN_SUCCESS_PCT = .85;
static const double UNLIKELY_PCT = .5;