mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 15:09:59 +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:
@@ -2578,7 +2578,7 @@ bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wt
|
||||
if (GetBoolArg("-walletrejectlongchains", DEFAULT_WALLET_REJECT_LONG_CHAINS)) {
|
||||
// Lastly, ensure this tx will pass the mempool's chain limits
|
||||
LockPoints lp;
|
||||
CTxMemPoolEntry entry(wtxNew.tx, 0, 0, 0, 0, false, 0, false, 0, lp);
|
||||
CTxMemPoolEntry entry(wtxNew.tx, 0, 0, 0, 0, 0, false, 0, lp);
|
||||
CTxMemPool::setEntries setAncestors;
|
||||
size_t nLimitAncestors = GetArg("-limitancestorcount", DEFAULT_ANCESTOR_LIMIT);
|
||||
size_t nLimitAncestorSize = GetArg("-limitancestorsize", DEFAULT_ANCESTOR_SIZE_LIMIT)*1000;
|
||||
|
||||
Reference in New Issue
Block a user