aboutsummaryrefslogtreecommitdiff
path: root/src/policy
diff options
context:
space:
mode:
authorSamuel Dobson <dobsonsa68@gmail.com>2021-10-12 14:36:51 +1300
committerSamuel Dobson <dobsonsa68@gmail.com>2021-10-12 14:36:51 +1300
commita0efe529e4fd053b890450413b9ca5e1bcd8f2c2 (patch)
tree79411554469949d6d3d988420d13e3bb986bba40 /src/policy
parente418a8e675e4dbca9f9c3cf7dd4633aa3c6c196e (diff)
downloadbitcoin-a0efe529e4fd053b890450413b9ca5e1bcd8f2c2.tar.xz
Fix outdated comments referring to ::ChainActive()
Diffstat (limited to 'src/policy')
-rw-r--r--src/policy/fees.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp
index 2ae5798ebe..2e2061d0a1 100644
--- a/src/policy/fees.cpp
+++ b/src/policy/fees.cpp
@@ -549,7 +549,7 @@ void CBlockPolicyEstimator::processTransaction(const CTxMemPoolEntry& entry, boo
if (txHeight != nBestSeenHeight) {
// Ignore side chains and re-orgs; assuming they are random they don't
// affect the estimate. We'll potentially double count transactions in 1-block reorgs.
- // Ignore txs if BlockPolicyEstimator is not in sync with ::ChainActive().Tip().
+ // Ignore txs if BlockPolicyEstimator is not in sync with ActiveChain().Tip().
// It will be synced next time a block is processed.
return;
}