doc: explain AcceptToMemoryPoolWorker's coins_to_uncache

This commit is contained in:
James O'Beirne
2019-01-25 16:33:21 -05:00
parent ab46fe6ec1
commit 5d26205272
2 changed files with 20 additions and 0 deletions

View File

@@ -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;
};