Fixes CID 1352698 uninitialized scalar field.
This commit is contained in:
@@ -66,6 +66,9 @@ class CTxMemPoolEntry;
|
|||||||
* they've been outstanding.
|
* 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
|
* 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
|
* 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
|
// Combine the total value with the tx counts to calculate the avg fee/priority per bucket
|
||||||
|
|
||||||
std::string dataTypeString;
|
std::string dataTypeString;
|
||||||
double decay;
|
double decay = DEFAULT_DECAY;
|
||||||
|
|
||||||
// Mempool counts of outstanding transactions
|
// Mempool counts of outstanding transactions
|
||||||
// For each bucket X, track the number of transactions in the mempool
|
// 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 */
|
/** Track confirm delays up to 25 blocks, can't estimate beyond that */
|
||||||
static const unsigned int MAX_BLOCK_CONFIRMS = 25;
|
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 */
|
/** 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 MIN_SUCCESS_PCT = .85;
|
||||||
static const double UNLIKELY_PCT = .5;
|
static const double UNLIKELY_PCT = .5;
|
||||||
|
|||||||
Reference in New Issue
Block a user