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.cpp | |
parent | 813962da0b17b918941c6849996845e35d84a451 (diff) |
mempool: Improve comments for [GS]etLoadTried
Also change the param name for SetLoadTried to load_tried.
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r-- | src/txmempool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 00e3068946..7eff6bdbe3 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -1216,8 +1216,8 @@ bool CTxMemPool::GetLoadTried() const return m_load_tried; } -void CTxMemPool::SetLoadTried(bool loaded) +void CTxMemPool::SetLoadTried(bool load_tried) { LOCK(cs); - m_load_tried = loaded; + m_load_tried = load_tried; } |