| 177 | } |
| 178 | |
| 179 | bool CBlockTreeDB::WriteFlag(const std::string &name, bool fValue) { |
| 180 | return Write(std::make_pair(DB_FLAG, name), fValue ? '1' : '0'); |
| 181 | } |
| 182 | |
| 183 | bool CBlockTreeDB::ReadFlag(const std::string &name, bool &fValue) { |
| 184 | char ch; |
no outgoing calls
no test coverage detected