| 282 | |
| 283 | template <typename K> |
| 284 | bool Erase(const K& key, bool fSync = false) |
| 285 | { |
| 286 | CDBBatch batch(*this); |
| 287 | batch.Erase(key); |
| 288 | return WriteBatch(batch, fSync); |
| 289 | } |
| 290 | |
| 291 | bool WriteBatch(CDBBatch& batch, bool fSync = false); |
| 292 |
nothing calls this directly
no test coverage detected