| 139 | } |
| 140 | |
| 141 | void CCoinsViewCache::SetBestBlock(const uint256 &hashBlockIn) { |
| 142 | hashBlock = hashBlockIn; |
| 143 | } |
| 144 | |
| 145 | bool CCoinsViewCache::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlockIn) { |
| 146 | for (CCoinsMap::iterator it = mapCoins.begin(); it != mapCoins.end(); it = mapCoins.erase(it)) { |
no outgoing calls