Browse Source

minor cleanup: remove unnecessary variable

0.15
Alex Morcos 7 years ago
parent
commit
ef589f8d40
  1. 3
      src/policy/fees.cpp
  2. 1
      src/policy/fees.h

3
src/policy/fees.cpp

@ -487,9 +487,8 @@ CBlockPolicyEstimator::CBlockPolicyEstimator() @@ -487,9 +487,8 @@ CBlockPolicyEstimator::CBlockPolicyEstimator()
: nBestSeenHeight(0), firstRecordedHeight(0), historicalFirst(0), historicalBest(0), trackedTxs(0), untrackedTxs(0)
{
static_assert(MIN_BUCKET_FEERATE > 0, "Min feerate must be nonzero");
minTrackedFee = CFeeRate(MIN_BUCKET_FEERATE);
size_t bucketIndex = 0;
for (double bucketBoundary = minTrackedFee.GetFeePerK(); bucketBoundary <= MAX_BUCKET_FEERATE; bucketBoundary *= FEE_SPACING, bucketIndex++) {
for (double bucketBoundary = MIN_BUCKET_FEERATE; bucketBoundary <= MAX_BUCKET_FEERATE; bucketBoundary *= FEE_SPACING, bucketIndex++) {
buckets.push_back(bucketBoundary);
bucketMap[bucketBoundary] = bucketIndex;
}

1
src/policy/fees.h

@ -177,7 +177,6 @@ public: @@ -177,7 +177,6 @@ public:
void FlushUnconfirmed(CTxMemPool& pool);
private:
CFeeRate minTrackedFee; //!< Passed to constructor to avoid dependency on main
unsigned int nBestSeenHeight;
unsigned int firstRecordedHeight;
unsigned int historicalFirst;

Loading…
Cancel
Save