diff options
author | Carl Dong <contact@carldong.me> | 2022-07-13 21:24:03 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2022-07-15 11:35:13 -0400 |
commit | f9e8e5719f28d84f68f7d75e26c8e7fccac8e7d3 (patch) | |
tree | 3a41dda434a55d277ef0ccaa2e84e22ab2ef48ff /src/txmempool.h | |
parent | 813962da0b17b918941c6849996845e35d84a451 (diff) |
mempool: Improve comments for [GS]etLoadTried
Also change the param name for SetLoadTried to load_tried.
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 1abf641ed2..d7d308038c 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -728,11 +728,17 @@ public: */ void GetTransactionAncestry(const uint256& txid, size_t& ancestors, size_t& descendants, size_t* ancestorsize = nullptr, CAmount* ancestorfees = nullptr) const; - /** @returns true if the mempool is fully loaded */ + /** + * @returns true if we've made an attempt to load the mempool regardless of + * whether the attempt was successful or not + */ bool GetLoadTried() const; - /** Sets the current loaded state */ - void SetLoadTried(bool loaded); + /** + * Set whether or not we've made an attempt to load the mempool (regardless + * of whether the attempt was successful or not) + */ + void SetLoadTried(bool load_tried); unsigned long size() const { |