| 162 | } |
| 163 | |
| 164 | bool CBlockDBCache::WriteReindexing(bool fReindexing) { |
| 165 | if (fReindexing) |
| 166 | return reindex_cache.SetData(true); |
| 167 | else |
| 168 | return reindex_cache.EraseData(); |
| 169 | } |
| 170 | bool CBlockDBCache::ReadReindexing(bool &fReindexing) { |
| 171 | return reindex_cache.GetData(fReindexing); |
| 172 | } |
no test coverage detected