diff --git a/src/coins.h b/src/coins.h index dbe3f8bd3..e6ba16894 100644 --- a/src/coins.h +++ b/src/coins.h @@ -441,6 +441,11 @@ public: private: CCoinsMap::iterator FetchCoins(const uint256 &txid); CCoinsMap::const_iterator FetchCoins(const uint256 &txid) const; + + /** + * By making the copy constructor private, we prevent accidentally using it when one intends to create a cache on top of a base cache. + */ + CCoinsViewCache(const CCoinsViewCache &); }; #endif // BITCOIN_COINS_H