mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
Merge #9138: Improve fee estimation
44b64b9Fix edge case with stale fee estimates (Alex Morcos)78ae62dAdd clarifying comments to fee estimation (Alex Morcos)5fe0f47Add extra logging to processBlock in fee estimation. (Alex Morcos)dc008c4Add IsCurrentForFeeEstimatation (Alex Morcos)ebafdcaPass pointers to existing CTxMemPoolEntries to fee estimation (Alex Morcos)d825838Always update fee estimates on new blocks. (Alex Morcos)6f06b26rename bool to validFeeEstimate (Alex Morcos)84f7ab0Remove member variable hadNoDependencies from CTxMemPoolEntry (Alex Morcos)60ac00dDon't track transactions at all during IBD. (Alex Morcos)4df4479Remove extraneous LogPrint from fee estimation (Alex Morcos)
This commit is contained in:
@@ -130,6 +130,8 @@ static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000;
|
||||
static const unsigned int DEFAULT_LIMITFREERELAY = 0;
|
||||
static const bool DEFAULT_RELAYPRIORITY = true;
|
||||
static const int64_t DEFAULT_MAX_TIP_AGE = 24 * 60 * 60;
|
||||
/** Maximum age of our tip in seconds for us to be considered current for fee estimation */
|
||||
static const int64_t MAX_FEE_ESTIMATION_TIP_AGE = 3 * 60 * 60;
|
||||
|
||||
/** Default for -permitbaremultisig */
|
||||
static const bool DEFAULT_PERMIT_BAREMULTISIG = true;
|
||||
|
||||
Reference in New Issue
Block a user