| 468 | } |
| 469 | |
| 470 | bool CBlockTreeDB::WriteFlag(const std::string& name, bool fValue) |
| 471 | { |
| 472 | return Write(std::make_pair(DB_FLAG, name), fValue ? '1' : '0'); |
| 473 | } |
| 474 | |
| 475 | bool CBlockTreeDB::ReadFlag(const std::string& name, bool& fValue) |
| 476 | { |
no outgoing calls
no test coverage detected