2014-08-26 22:28:32 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2014-08-26 22:28:32 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_POLICYESTIMATOR_H
|
|
|
|
#define BITCOIN_POLICYESTIMATOR_H
|
|
|
|
|
|
|
|
#include "amount.h"
|
2016-03-31 23:30:17 +02:00
|
|
|
#include "feerate.h"
|
2014-08-26 22:28:32 +02:00
|
|
|
#include "uint256.h"
|
2016-10-13 16:19:20 +02:00
|
|
|
#include "random.h"
|
2017-02-15 15:24:11 +01:00
|
|
|
#include "sync.h"
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class CAutoFile;
|
|
|
|
class CFeeRate;
|
|
|
|
class CTxMemPoolEntry;
|
2015-11-16 21:21:51 +01:00
|
|
|
class CTxMemPool;
|
2017-02-16 23:27:20 +01:00
|
|
|
class TxConfirmStats;
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/** \class CBlockPolicyEstimator
|
2016-03-21 18:04:40 +01:00
|
|
|
* The BlockPolicyEstimator is used for estimating the feerate needed
|
2014-08-26 22:28:32 +02:00
|
|
|
* for a transaction to be included in a block within a certain number of
|
|
|
|
* blocks.
|
|
|
|
*
|
|
|
|
* At a high level the algorithm works by grouping transactions into buckets
|
2016-03-21 18:04:40 +01:00
|
|
|
* based on having similar feerates and then tracking how long it
|
2014-08-26 22:28:32 +02:00
|
|
|
* takes transactions in the various buckets to be mined. It operates under
|
2016-03-21 18:04:40 +01:00
|
|
|
* the assumption that in general transactions of higher feerate will be
|
|
|
|
* included in blocks before transactions of lower feerate. So for
|
|
|
|
* example if you wanted to know what feerate you should put on a transaction to
|
2014-08-26 22:28:32 +02:00
|
|
|
* be included in a block within the next 5 blocks, you would start by looking
|
2016-03-21 18:04:40 +01:00
|
|
|
* at the bucket with the highest feerate transactions and verifying that a
|
2014-08-26 22:28:32 +02:00
|
|
|
* sufficiently high percentage of them were confirmed within 5 blocks and
|
2016-03-21 18:04:40 +01:00
|
|
|
* then you would look at the next highest feerate bucket, and so on, stopping at
|
|
|
|
* the last bucket to pass the test. The average feerate of transactions in this
|
|
|
|
* bucket will give you an indication of the lowest feerate you can put on a
|
2014-08-26 22:28:32 +02:00
|
|
|
* transaction and still have a sufficiently high chance of being confirmed
|
|
|
|
* within your desired 5 blocks.
|
|
|
|
*
|
2016-03-21 18:04:40 +01:00
|
|
|
* Here is a brief description of the implementation:
|
2017-04-12 18:29:03 +02:00
|
|
|
* When a transaction enters the mempool, we track the height of the block chain
|
|
|
|
* at entry. All further calculations are conducted only on this set of "seen"
|
|
|
|
* transactions. Whenever a block comes in, we count the number of transactions
|
|
|
|
* in each bucket and the total amount of feerate paid in each bucket. Then we
|
|
|
|
* calculate how many blocks Y it took each transaction to be mined. We convert
|
|
|
|
* from a number of blocks to a number of periods Y' each encompassing "scale"
|
|
|
|
* blocks. This is is tracked in 3 different data sets each up to a maximum
|
|
|
|
* number of periods. Within each data set we have an array of counters in each
|
|
|
|
* feerate bucket and we increment all the counters from Y' up to max periods
|
2017-05-18 09:50:11 +02:00
|
|
|
* representing that a tx was successfully confirmed in less than or equal to
|
2017-04-12 18:29:03 +02:00
|
|
|
* that many periods. We want to save a history of this information, so at any
|
|
|
|
* time we have a counter of the total number of transactions that happened in a
|
|
|
|
* given feerate bucket and the total number that were confirmed in each of the
|
|
|
|
* periods or less for any bucket. We save this history by keeping an
|
|
|
|
* exponentially decaying moving average of each one of these stats. This is
|
|
|
|
* done for a different decay in each of the 3 data sets to keep relevant data
|
|
|
|
* from different time horizons. Furthermore we also keep track of the number
|
|
|
|
* unmined (in mempool or left mempool without being included in a block)
|
|
|
|
* transactions in each bucket and for how many blocks they have been
|
|
|
|
* outstanding and use both of these numbers to increase the number of transactions
|
|
|
|
* we've seen in that feerate bucket when calculating an estimate for any number
|
|
|
|
* of confirmations below the number of blocks they've been outstanding.
|
2014-08-26 22:28:32 +02:00
|
|
|
*/
|
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/* Identifier for each of the 3 different TxConfirmStats which will track
|
|
|
|
* history over different time horizons. */
|
2017-01-24 22:30:03 +01:00
|
|
|
enum FeeEstimateHorizon {
|
|
|
|
SHORT_HALFLIFE = 0,
|
|
|
|
MED_HALFLIFE = 1,
|
|
|
|
LONG_HALFLIFE = 2
|
|
|
|
};
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2017-04-25 21:39:32 +02:00
|
|
|
/* Enumeration of reason for returned fee estimate */
|
|
|
|
enum class FeeReason {
|
|
|
|
NONE,
|
|
|
|
HALF_ESTIMATE,
|
|
|
|
FULL_ESTIMATE,
|
|
|
|
DOUBLE_ESTIMATE,
|
|
|
|
CONSERVATIVE,
|
|
|
|
MEMPOOL_MIN,
|
|
|
|
PAYTXFEE,
|
|
|
|
FALLBACK,
|
|
|
|
REQUIRED,
|
|
|
|
MAXTXFEE,
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string StringForFeeReason(FeeReason reason);
|
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/* Used to return detailed information about a feerate bucket */
|
2017-01-24 22:30:03 +01:00
|
|
|
struct EstimatorBucket
|
|
|
|
{
|
|
|
|
double start = -1;
|
|
|
|
double end = -1;
|
|
|
|
double withinTarget = 0;
|
|
|
|
double totalConfirmed = 0;
|
|
|
|
double inMempool = 0;
|
2017-03-09 21:26:05 +01:00
|
|
|
double leftMempool = 0;
|
2017-01-24 22:30:03 +01:00
|
|
|
};
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/* Used to return detailed information about a fee estimate calculation */
|
2017-01-24 22:30:03 +01:00
|
|
|
struct EstimationResult
|
|
|
|
{
|
|
|
|
EstimatorBucket pass;
|
|
|
|
EstimatorBucket fail;
|
2017-04-25 21:39:32 +02:00
|
|
|
double decay = 0;
|
|
|
|
unsigned int scale = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FeeCalculation
|
|
|
|
{
|
|
|
|
EstimationResult est;
|
|
|
|
FeeReason reason = FeeReason::NONE;
|
|
|
|
int desiredTarget = 0;
|
|
|
|
int returnedTarget = 0;
|
2017-01-24 22:30:03 +01:00
|
|
|
};
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/**
|
2016-03-21 18:04:40 +01:00
|
|
|
* We want to be able to estimate feerates that are needed on tx's to be included in
|
2014-08-26 22:28:32 +02:00
|
|
|
* a certain number of blocks. Every time a block is added to the best chain, this class records
|
|
|
|
* stats on the transactions included in that block
|
|
|
|
*/
|
|
|
|
class CBlockPolicyEstimator
|
|
|
|
{
|
2017-03-09 20:02:00 +01:00
|
|
|
private:
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Track confirm delays up to 12 blocks for short horizon */
|
2017-04-03 17:31:27 +02:00
|
|
|
static constexpr unsigned int SHORT_BLOCK_PERIODS = 12;
|
|
|
|
static constexpr unsigned int SHORT_SCALE = 1;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Track confirm delays up to 48 blocks for medium horizon */
|
2017-04-03 17:31:27 +02:00
|
|
|
static constexpr unsigned int MED_BLOCK_PERIODS = 24;
|
|
|
|
static constexpr unsigned int MED_SCALE = 2;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Track confirm delays up to 1008 blocks for long horizon */
|
2017-04-03 17:31:27 +02:00
|
|
|
static constexpr unsigned int LONG_BLOCK_PERIODS = 42;
|
|
|
|
static constexpr unsigned int LONG_SCALE = 24;
|
2017-03-10 22:57:40 +01:00
|
|
|
/** Historical estimates that are older than this aren't valid */
|
|
|
|
static const unsigned int OLDEST_ESTIMATE_HISTORY = 6 * 1008;
|
2017-03-09 20:02:00 +01:00
|
|
|
|
|
|
|
/** Decay of .962 is a half-life of 18 blocks or about 3 hours */
|
|
|
|
static constexpr double SHORT_DECAY = .962;
|
|
|
|
/** Decay of .998 is a half-life of 144 blocks or about 1 day */
|
|
|
|
static constexpr double MED_DECAY = .9952;
|
|
|
|
/** Decay of .9995 is a half-life of 1008 blocks or about 1 week */
|
|
|
|
static constexpr double LONG_DECAY = .99931;
|
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Require greater than 60% of X feerate transactions to be confirmed within Y/2 blocks*/
|
2017-03-09 20:02:00 +01:00
|
|
|
static constexpr double HALF_SUCCESS_PCT = .6;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Require greater than 85% of X feerate transactions to be confirmed within Y blocks*/
|
2017-03-09 20:02:00 +01:00
|
|
|
static constexpr double SUCCESS_PCT = .85;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Require greater than 95% of X feerate transactions to be confirmed within 2 * Y blocks*/
|
2017-03-09 20:02:00 +01:00
|
|
|
static constexpr double DOUBLE_SUCCESS_PCT = .95;
|
|
|
|
|
2017-03-02 16:08:25 +01:00
|
|
|
/** Require an avg of 0.1 tx in the combined feerate bucket per block to have stat significance */
|
|
|
|
static constexpr double SUFFICIENT_FEETXS = 0.1;
|
2017-01-24 22:30:03 +01:00
|
|
|
/** Require an avg of 0.5 tx when using short decay since there are fewer blocks considered*/
|
|
|
|
static constexpr double SUFFICIENT_TXS_SHORT = 0.5;
|
2017-03-09 20:02:00 +01:00
|
|
|
|
|
|
|
/** Minimum and Maximum values for tracking feerates
|
|
|
|
* The MIN_BUCKET_FEERATE should just be set to the lowest reasonable feerate we
|
|
|
|
* might ever want to track. Historically this has been 1000 since it was
|
|
|
|
* inheriting DEFAULT_MIN_RELAY_TX_FEE and changing it is disruptive as it
|
|
|
|
* invalidates old estimates files. So leave it at 1000 unless it becomes
|
|
|
|
* necessary to lower it, and then lower it substantially.
|
|
|
|
*/
|
|
|
|
static constexpr double MIN_BUCKET_FEERATE = 1000;
|
|
|
|
static constexpr double MAX_BUCKET_FEERATE = 1e7;
|
|
|
|
|
|
|
|
/** Spacing of FeeRate buckets
|
|
|
|
* We have to lump transactions into buckets based on feerate, but we want to be able
|
|
|
|
* to give accurate estimates over a large range of potential feerates
|
|
|
|
* Therefore it makes sense to exponentially space the buckets
|
|
|
|
*/
|
|
|
|
static constexpr double FEE_SPACING = 1.05;
|
|
|
|
|
2014-08-26 22:28:32 +02:00
|
|
|
public:
|
|
|
|
/** Create new BlockPolicyEstimator and initialize stats tracking classes with default values */
|
2017-01-13 22:25:15 +01:00
|
|
|
CBlockPolicyEstimator();
|
2017-02-16 22:23:15 +01:00
|
|
|
~CBlockPolicyEstimator();
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/** Process all the transactions that have been included in a block */
|
|
|
|
void processBlock(unsigned int nBlockHeight,
|
2016-11-11 20:16:42 +01:00
|
|
|
std::vector<const CTxMemPoolEntry*>& entries);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/** Process a transaction accepted to the mempool*/
|
2016-11-11 18:48:01 +01:00
|
|
|
void processTransaction(const CTxMemPoolEntry& entry, bool validFeeEstimate);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/** Remove a transaction from the mempool tracking stats*/
|
2017-03-09 21:26:05 +01:00
|
|
|
bool removeTx(uint256 hash, bool inBlock);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/** DEPRECATED. Return a feerate estimate */
|
2017-02-15 21:23:34 +01:00
|
|
|
CFeeRate estimateFee(int confTarget) const;
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Estimate feerate needed to get be included in a block within confTarget
|
|
|
|
* blocks. If no answer can be given at confTarget, return an estimate at
|
|
|
|
* the closest target where one can be given. 'conservative' estimates are
|
|
|
|
* valid over longer time horizons also.
|
2015-11-16 21:10:22 +01:00
|
|
|
*/
|
2017-04-25 21:39:32 +02:00
|
|
|
CFeeRate estimateSmartFee(int confTarget, FeeCalculation *feeCalc, const CTxMemPool& pool, bool conservative = true) const;
|
2015-11-16 21:10:22 +01:00
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Return a specific fee estimate calculation with a given success
|
|
|
|
* threshold and time horizon, and optionally return detailed data about
|
|
|
|
* calculation
|
2015-11-16 21:10:22 +01:00
|
|
|
*/
|
2017-01-24 22:30:03 +01:00
|
|
|
CFeeRate estimateRawFee(int confTarget, double successThreshold, FeeEstimateHorizon horizon, EstimationResult *result = nullptr) const;
|
2015-11-16 21:10:22 +01:00
|
|
|
|
2014-08-26 22:28:32 +02:00
|
|
|
/** Write estimation data to a file */
|
2017-02-15 21:48:48 +01:00
|
|
|
bool Write(CAutoFile& fileout) const;
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/** Read estimation data from a file */
|
2017-02-15 21:48:48 +01:00
|
|
|
bool Read(CAutoFile& filein);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2017-03-09 21:26:05 +01:00
|
|
|
/** Empty mempool transactions on shutdown to record failure to confirm for txs still in mempool */
|
|
|
|
void FlushUnconfirmed(CTxMemPool& pool);
|
|
|
|
|
2014-08-26 22:28:32 +02:00
|
|
|
private:
|
|
|
|
unsigned int nBestSeenHeight;
|
2017-03-07 21:01:50 +01:00
|
|
|
unsigned int firstRecordedHeight;
|
|
|
|
unsigned int historicalFirst;
|
|
|
|
unsigned int historicalBest;
|
|
|
|
|
2014-08-26 22:28:32 +02:00
|
|
|
struct TxStatsInfo
|
|
|
|
{
|
|
|
|
unsigned int blockHeight;
|
|
|
|
unsigned int bucketIndex;
|
2016-03-21 18:04:40 +01:00
|
|
|
TxStatsInfo() : blockHeight(0), bucketIndex(0) {}
|
2014-08-26 22:28:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// map of txids to information about that transaction
|
|
|
|
std::map<uint256, TxStatsInfo> mapMemPoolTxs;
|
|
|
|
|
|
|
|
/** Classes to track historical data on transaction confirmations */
|
2017-02-16 22:23:15 +01:00
|
|
|
TxConfirmStats* feeStats;
|
2017-02-23 21:13:41 +01:00
|
|
|
TxConfirmStats* shortStats;
|
|
|
|
TxConfirmStats* longStats;
|
2016-11-11 19:40:27 +01:00
|
|
|
|
|
|
|
unsigned int trackedTxs;
|
|
|
|
unsigned int untrackedTxs;
|
2017-02-15 15:16:51 +01:00
|
|
|
|
2017-02-23 21:13:41 +01:00
|
|
|
std::vector<double> buckets; // The upper-bound of the range for the bucket (inclusive)
|
|
|
|
std::map<double, unsigned int> bucketMap; // Map of bucket upper-bound to index into all vectors by bucket
|
|
|
|
|
2017-02-15 15:24:11 +01:00
|
|
|
mutable CCriticalSection cs_feeEstimator;
|
|
|
|
|
2017-02-15 15:16:51 +01:00
|
|
|
/** Process a transaction confirmed in a block*/
|
|
|
|
bool processBlockTx(unsigned int nBlockHeight, const CTxMemPoolEntry* entry);
|
|
|
|
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Helper for estimateSmartFee */
|
2017-04-25 21:39:32 +02:00
|
|
|
double estimateCombinedFee(unsigned int confTarget, double successThreshold, bool checkShorterHorizon, EstimationResult *result) const;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Helper for estimateSmartFee */
|
2017-04-25 21:39:32 +02:00
|
|
|
double estimateConservativeFee(unsigned int doubleTarget, EstimationResult *result) const;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Number of blocks of data recorded while fee estimates have been running */
|
2017-03-10 22:57:40 +01:00
|
|
|
unsigned int BlockSpan() const;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Number of blocks of recorded fee estimate data represented in saved data file */
|
2017-03-10 22:57:40 +01:00
|
|
|
unsigned int HistoricalBlockSpan() const;
|
2017-04-12 18:29:03 +02:00
|
|
|
/** Calculation of highest target that reasonable estimate can be provided for */
|
2017-03-10 22:57:40 +01:00
|
|
|
unsigned int MaxUsableEstimate() const;
|
2014-08-26 22:28:32 +02:00
|
|
|
};
|
2016-02-12 21:57:15 +01:00
|
|
|
|
|
|
|
class FeeFilterRounder
|
|
|
|
{
|
2017-03-09 20:02:00 +01:00
|
|
|
private:
|
|
|
|
static constexpr double MAX_FILTER_FEERATE = 1e7;
|
|
|
|
/** FEE_FILTER_SPACING is just used to provide some quantization of fee
|
|
|
|
* filter results. Historically it reused FEE_SPACING, but it is completely
|
|
|
|
* unrelated, and was made a separate constant so the two concepts are not
|
|
|
|
* tied together */
|
|
|
|
static constexpr double FEE_FILTER_SPACING = 1.1;
|
|
|
|
|
2016-02-12 21:57:15 +01:00
|
|
|
public:
|
|
|
|
/** Create new FeeFilterRounder */
|
|
|
|
FeeFilterRounder(const CFeeRate& minIncrementalFee);
|
|
|
|
|
|
|
|
/** Quantize a minimum fee for privacy purpose before broadcast **/
|
|
|
|
CAmount round(CAmount currentMinFee);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::set<double> feeset;
|
2016-10-13 16:19:20 +02:00
|
|
|
FastRandomContext insecure_rand;
|
2016-02-12 21:57:15 +01:00
|
|
|
};
|
2017-01-24 22:30:03 +01:00
|
|
|
|
2014-08-26 22:28:32 +02:00
|
|
|
#endif /*BITCOIN_POLICYESTIMATOR_H */
|