| 236 | } |
| 237 | |
| 238 | bool CBlockTreeDB::WriteFlag(const std::string &name, bool fValue) { |
| 239 | return Write(std::make_pair(DB_FLAG, name), fValue ? '1' : '0'); |
| 240 | } |
| 241 | |
| 242 | bool CBlockTreeDB::ReadFlag(const std::string &name, bool &fValue) { |
| 243 | char ch; |
no outgoing calls
no test coverage detected