aboutsummaryrefslogtreecommitdiff
path: root/src/node/mini_miner.h
diff options
context:
space:
mode:
authorkevkevin <oapallikunnel@gmail.com>2023-11-06 20:39:03 -0600
committerkevkevin <oapallikunnel@gmail.com>2023-11-08 14:45:18 -0600
commitb4b01d3fb42e7b688d97b75f57cfe18cfca6d943 (patch)
tree592cbba9e7b1daba693d931b01da24164483ac1f /src/node/mini_miner.h
parent83933eff00335415477f969147ab321824dcc4e8 (diff)
[refactor] updating miniminer comments to be more accurate
Diffstat (limited to 'src/node/mini_miner.h')
-rw-r--r--src/node/mini_miner.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node/mini_miner.h b/src/node/mini_miner.h
index 67d40b2cce..de62c0af75 100644
--- a/src/node/mini_miner.h
+++ b/src/node/mini_miner.h
@@ -137,10 +137,10 @@ public:
*/
MiniMiner(const CTxMemPool& mempool, const std::vector<COutPoint>& outpoints);
- /** Constructor in which the MiniMinerMempoolEntry entries have been constructed manually,
- * presumably because these transactions are not in the mempool (yet). It is assumed that all
- * entries are unique and their values are correct, otherwise results computed by MiniMiner may
- * be incorrect. Callers should check IsReadyToCalculate() after construction.
+ /** Constructor in which the MiniMinerMempoolEntry entries have been constructed manually.
+ * It is assumed that all entries are unique and their values are correct, otherwise results
+ * computed by MiniMiner may be incorrect. Callers should check IsReadyToCalculate() after
+ * construction.
* @param[in] descendant_caches A map from each transaction to the set of txids of this
* transaction's descendant set, including itself. Each tx in
* manual_entries must have a corresponding entry in this map, and