| 321 | } |
| 322 | |
| 323 | bool CCoinsViewCache::Flush() { |
| 324 | bool fOk = base->BatchWrite(cacheCoins, hashBlock); |
| 325 | cacheCoins.clear(); |
| 326 | cachedCoinsUsage = 0; |
| 327 | return fOk; |
| 328 | } |
| 329 | |
| 330 | void CCoinsViewCache::Uncache(const COutPoint& point) |
| 331 | { |
no test coverage detected