From d97d6199ce506cda858afa867f2582c8138953a5 Mon Sep 17 00:00:00 2001 From: Suhas Daftuar Date: Tue, 25 Nov 2025 12:55:32 -0500 Subject: [PATCH] Fix comment to reference cluster limits, not chain limits --- src/txmempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.cpp b/src/txmempool.cpp index a68975b22bd..7f315a3b177 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -783,7 +783,7 @@ void CTxMemPool::RemoveStaged(setEntries &stage, MemPoolRemovalReason reason) { bool CTxMemPool::CheckPolicyLimits(const CTransactionRef& tx) { LOCK(cs); - // Use ChangeSet interface to check whether the chain + // Use ChangeSet interface to check whether the cluster count // limits would be violated. Note that the changeset will be destroyed // when it goes out of scope. auto changeset = GetChangeSet();