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"
|
|
|
|
#include "uint256.h"
|
2016-10-13 16:19:20 +02:00
|
|
|
#include "random.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;
|
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:
|
|
|
|
* When a transaction enters the mempool, we
|
2014-08-26 22:28:32 +02:00
|
|
|
* track the height of the block chain at entry. Whenever a block comes in,
|
2016-03-21 18:04:40 +01:00
|
|
|
* we count the number of transactions in each bucket and the total amount of feerate
|
2014-08-26 22:28:32 +02:00
|
|
|
* paid in each bucket. Then we calculate how many blocks Y it took each
|
|
|
|
* transaction to be mined and we track an array of counters in each bucket
|
|
|
|
* for how long it to took transactions to get confirmed from 1 to a max of 25
|
|
|
|
* and we increment all the counters from Y up to 25. This is because for any
|
|
|
|
* number Z>=Y the transaction was successfully mined within Z blocks. We
|
|
|
|
* want to save a history of this information, so at any time we have a
|
2016-03-21 18:04:40 +01:00
|
|
|
* counter of the total number of transactions that happened in a given feerate
|
2014-08-26 22:28:32 +02:00
|
|
|
* bucket and the total number that were confirmed in each number 1-25 blocks
|
|
|
|
* or less for any bucket. We save this history by keeping an exponentially
|
|
|
|
* decaying moving average of each one of these stats. Furthermore we also
|
|
|
|
* keep track of the number unmined (in mempool) transactions in each bucket
|
|
|
|
* and for how many blocks they have been outstanding and use that to increase
|
2016-03-21 18:04:40 +01:00
|
|
|
* the number of transactions we've seen in that feerate bucket when calculating
|
2014-08-26 22:28:32 +02:00
|
|
|
* an estimate for any number of confirmations below the number of blocks
|
|
|
|
* they've been outstanding.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-03-21 18:04:40 +01:00
|
|
|
* We will instantiate an instance of this class to track transactions that were
|
|
|
|
* included in a block. We will lump transactions into a bucket according to their
|
|
|
|
* approximate feerate and then track how long it took for those txs to be included in a block
|
2014-08-26 22:28:32 +02:00
|
|
|
*
|
|
|
|
* The tracking of unconfirmed (mempool) transactions is completely independent of the
|
|
|
|
* historical tracking of transactions that have been confirmed in a block.
|
|
|
|
*/
|
|
|
|
class TxConfirmStats
|
|
|
|
{
|
|
|
|
private:
|
2016-03-21 18:04:40 +01:00
|
|
|
//Define the buckets we will group transactions into
|
2014-08-26 22:28:32 +02: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
|
|
|
|
|
|
|
|
// For each bucket X:
|
|
|
|
// Count the total # of txs in each bucket
|
|
|
|
// Track the historical moving average of this total over blocks
|
|
|
|
std::vector<double> txCtAvg;
|
2016-01-17 12:03:56 +01:00
|
|
|
// and calculate the total for the current block to update the moving average
|
2014-08-26 22:28:32 +02:00
|
|
|
std::vector<int> curBlockTxCt;
|
|
|
|
|
|
|
|
// Count the total # of txs confirmed within Y blocks in each bucket
|
|
|
|
// Track the historical moving average of theses totals over blocks
|
|
|
|
std::vector<std::vector<double> > confAvg; // confAvg[Y][X]
|
2016-01-17 12:03:56 +01:00
|
|
|
// and calculate the totals for the current block to update the moving averages
|
2014-08-26 22:28:32 +02:00
|
|
|
std::vector<std::vector<int> > curBlockConf; // curBlockConf[Y][X]
|
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
// Sum the total feerate of all tx's in each bucket
|
2014-08-26 22:28:32 +02:00
|
|
|
// Track the historical moving average of this total over blocks
|
|
|
|
std::vector<double> avg;
|
|
|
|
// and calculate the total for the current block to update the moving average
|
|
|
|
std::vector<double> curBlockVal;
|
|
|
|
|
|
|
|
// Combine the conf counts with tx counts to calculate the confirmation % for each Y,X
|
2016-03-21 18:04:40 +01:00
|
|
|
// Combine the total value with the tx counts to calculate the avg feerate per bucket
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
double decay;
|
|
|
|
|
|
|
|
// Mempool counts of outstanding transactions
|
|
|
|
// For each bucket X, track the number of transactions in the mempool
|
|
|
|
// that are unconfirmed for each possible confirmation value Y
|
|
|
|
std::vector<std::vector<int> > unconfTxs; //unconfTxs[Y][X]
|
|
|
|
// transactions still unconfirmed after MAX_CONFIRMS for each bucket
|
|
|
|
std::vector<int> oldUnconfTxs;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Initialize the data structures. This is called by BlockPolicyEstimator's
|
|
|
|
* constructor with default values.
|
2015-08-09 01:17:27 +02:00
|
|
|
* @param defaultBuckets contains the upper limits for the bucket boundaries
|
2014-08-26 22:28:32 +02:00
|
|
|
* @param maxConfirms max number of confirms to track
|
|
|
|
* @param decay how much to decay the historical moving average per block
|
|
|
|
*/
|
2016-03-21 18:04:40 +01:00
|
|
|
void Initialize(std::vector<double>& defaultBuckets, unsigned int maxConfirms, double decay);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
/** Clear the state of the curBlock variables to start counting for the new block */
|
|
|
|
void ClearCurrent(unsigned int nBlockHeight);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Record a new transaction data point in the current block stats
|
|
|
|
* @param blocksToConfirm the number of blocks it took this transaction to confirm
|
2016-03-21 18:04:40 +01:00
|
|
|
* @param val the feerate of the transaction
|
2014-08-26 22:28:32 +02:00
|
|
|
* @warning blocksToConfirm is 1-based and has to be >= 1
|
|
|
|
*/
|
|
|
|
void Record(int blocksToConfirm, double val);
|
|
|
|
|
|
|
|
/** Record a new transaction entering the mempool*/
|
|
|
|
unsigned int NewTx(unsigned int nBlockHeight, double val);
|
|
|
|
|
|
|
|
/** Remove a transaction from mempool tracking stats*/
|
|
|
|
void removeTx(unsigned int entryHeight, unsigned int nBestSeenHeight,
|
|
|
|
unsigned int bucketIndex);
|
|
|
|
|
|
|
|
/** Update our estimates by decaying our historical moving average and updating
|
|
|
|
with the data gathered from the current block */
|
|
|
|
void UpdateMovingAverages();
|
|
|
|
|
|
|
|
/**
|
2016-03-21 18:04:40 +01:00
|
|
|
* Calculate a feerate estimate. Find the lowest value bucket (or range of buckets
|
2014-08-26 22:28:32 +02:00
|
|
|
* to make sure we have enough data points) whose transactions still have sufficient likelihood
|
|
|
|
* of being confirmed within the target number of confirmations
|
|
|
|
* @param confTarget target number of confirmations
|
|
|
|
* @param sufficientTxVal required average number of transactions per block in a bucket range
|
|
|
|
* @param minSuccess the success probability we require
|
2016-03-21 18:04:40 +01:00
|
|
|
* @param requireGreater return the lowest feerate such that all higher values pass minSuccess OR
|
|
|
|
* return the highest feerate such that all lower values fail minSuccess
|
2014-08-26 22:28:32 +02:00
|
|
|
* @param nBlockHeight the current block height
|
|
|
|
*/
|
|
|
|
double EstimateMedianVal(int confTarget, double sufficientTxVal,
|
|
|
|
double minSuccess, bool requireGreater, unsigned int nBlockHeight);
|
|
|
|
|
|
|
|
/** Return the max number of confirms we're tracking */
|
|
|
|
unsigned int GetMaxConfirms() { return confAvg.size(); }
|
|
|
|
|
|
|
|
/** Write state of estimation data to a file*/
|
|
|
|
void Write(CAutoFile& fileout);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read saved state of estimation data from a file and replace all internal data structures and
|
|
|
|
* variables with this state.
|
|
|
|
*/
|
|
|
|
void Read(CAutoFile& filein);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 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;
|
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
/** Require greater than 95% of X feerate transactions to be confirmed within Y blocks for X to be big enough */
|
2015-11-16 21:18:15 +01:00
|
|
|
static const double MIN_SUCCESS_PCT = .95;
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
/** Require an avg of 1 tx in the combined feerate bucket per block to have stat significance */
|
2014-08-26 22:28:32 +02:00
|
|
|
static const double SUFFICIENT_FEETXS = 1;
|
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
// Minimum and Maximum values for tracking feerates
|
2016-12-06 03:46:08 +01:00
|
|
|
static constexpr double MIN_FEERATE = 10;
|
2014-08-26 22:28:32 +02:00
|
|
|
static const double MAX_FEERATE = 1e7;
|
|
|
|
static const double INF_FEERATE = MAX_MONEY;
|
|
|
|
static const double INF_PRIORITY = 1e9 * MAX_MONEY;
|
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
// 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
|
2014-08-26 22:28:32 +02:00
|
|
|
// Therefore it makes sense to exponentially space the buckets
|
|
|
|
/** Spacing of FeeRate buckets */
|
|
|
|
static const double FEE_SPACING = 1.1;
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create new BlockPolicyEstimator and initialize stats tracking classes with default values */
|
|
|
|
CBlockPolicyEstimator(const CFeeRate& minRelayFee);
|
|
|
|
|
|
|
|
/** Process all the transactions that have been included in a block */
|
|
|
|
void processBlock(unsigned int nBlockHeight,
|
|
|
|
std::vector<CTxMemPoolEntry>& entries, bool fCurrentEstimate);
|
|
|
|
|
|
|
|
/** Process a transaction confirmed in a block*/
|
|
|
|
void processBlockTx(unsigned int nBlockHeight, const CTxMemPoolEntry& entry);
|
|
|
|
|
|
|
|
/** Process a transaction accepted to the mempool*/
|
|
|
|
void processTransaction(const CTxMemPoolEntry& entry, bool fCurrentEstimate);
|
|
|
|
|
|
|
|
/** Remove a transaction from the mempool tracking stats*/
|
2016-11-10 20:16:42 +01:00
|
|
|
bool removeTx(uint256 hash);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
/** Return a feerate estimate */
|
2014-08-26 22:28:32 +02:00
|
|
|
CFeeRate estimateFee(int confTarget);
|
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
/** Estimate feerate needed to get be included in a block within
|
2015-11-16 21:10:22 +01:00
|
|
|
* confTarget blocks. If no answer can be given at confTarget, return an
|
|
|
|
* estimate at the lowest target where one can be given.
|
|
|
|
*/
|
2015-11-24 14:53:14 +01:00
|
|
|
CFeeRate estimateSmartFee(int confTarget, int *answerFoundAtTarget, const CTxMemPool& pool);
|
2015-11-16 21:10:22 +01:00
|
|
|
|
2016-03-21 18:04:40 +01:00
|
|
|
/** Return a priority estimate.
|
|
|
|
* DEPRECATED
|
|
|
|
* Returns -1
|
|
|
|
*/
|
2014-08-26 22:28:32 +02:00
|
|
|
double estimatePriority(int confTarget);
|
|
|
|
|
2015-11-16 21:10:22 +01:00
|
|
|
/** Estimate priority needed to get be included in a block within
|
2016-03-21 18:04:40 +01:00
|
|
|
* confTarget blocks.
|
|
|
|
* DEPRECATED
|
|
|
|
* Returns -1 unless mempool is currently limited then returns INF_PRIORITY
|
|
|
|
* answerFoundAtTarget is set to confTarget
|
2015-11-16 21:10:22 +01:00
|
|
|
*/
|
2015-11-24 14:53:14 +01:00
|
|
|
double estimateSmartPriority(int confTarget, int *answerFoundAtTarget, const CTxMemPool& pool);
|
2015-11-16 21:10:22 +01:00
|
|
|
|
2014-08-26 22:28:32 +02:00
|
|
|
/** Write estimation data to a file */
|
|
|
|
void Write(CAutoFile& fileout);
|
|
|
|
|
|
|
|
/** Read estimation data from a file */
|
2016-03-21 18:04:40 +01:00
|
|
|
void Read(CAutoFile& filein, int nFileVersion);
|
2014-08-26 22:28:32 +02:00
|
|
|
|
|
|
|
private:
|
2016-04-03 11:49:36 +02:00
|
|
|
CFeeRate minTrackedFee; //!< Passed to constructor to avoid dependency on main
|
2014-08-26 22:28:32 +02:00
|
|
|
unsigned int nBestSeenHeight;
|
|
|
|
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 */
|
2016-03-21 18:04:40 +01:00
|
|
|
TxConfirmStats feeStats;
|
2014-08-26 22:28:32 +02:00
|
|
|
};
|
2016-02-12 21:57:15 +01:00
|
|
|
|
|
|
|
class FeeFilterRounder
|
|
|
|
{
|
|
|
|
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
|
|
|
};
|
2014-08-26 22:28:32 +02:00
|
|
|
#endif /*BITCOIN_POLICYESTIMATOR_H */
|