diff options
author | James O'Beirne <james.obeirne@gmail.com> | 2019-01-25 16:33:21 -0500 |
---|---|---|
committer | James O'Beirne <james.obeirne@gmail.com> | 2019-04-26 10:01:45 -0400 |
commit | 5d262052728acdaa2d108a35ba9921a23b3d761a (patch) | |
tree | beb10f26d1a49e9b9a2b79908a008d5e215dd48e /src/coins.h | |
parent | ab46fe6ec1b37e88c5a06ee7a06ab31cbd18304f (diff) |
doc: explain AcceptToMemoryPoolWorker's coins_to_uncache
Diffstat (limited to 'src/coins.h')
-rw-r--r-- | src/coins.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/coins.h b/src/coins.h index 94493453f0..975fbb1945 100644 --- a/src/coins.h +++ b/src/coins.h @@ -294,6 +294,10 @@ public: bool HaveInputs(const CTransaction& tx) const; private: + /** + * @note this is marked const, but may actually append to `cacheCoins`, increasing + * memory usage. + */ CCoinsMap::iterator FetchCoin(const COutPoint &outpoint) const; }; |