| 103 | } |
| 104 | |
| 105 | void BlockTreeDB::WriteFlag(const std::string& name, bool fValue) |
| 106 | { |
| 107 | Write(std::make_pair(DB_FLAG, name), fValue ? uint8_t{'1'} : uint8_t{'0'}); |
| 108 | } |
| 109 | |
| 110 | bool BlockTreeDB::ReadFlag(const std::string& name, bool& fValue) |
| 111 | { |
no outgoing calls
no test coverage detected