| 72 | } |
| 73 | |
| 74 | void CRegID::Set(uint64_t regIdIntValue) { |
| 75 | height = regIdIntValue >> 20; |
| 76 | index = regIdIntValue & 0xFFFFF; |
| 77 | } |
| 78 | |
| 79 | bool CRegID::GetKeyId(const string &str, CKeyID &keyId) { |
| 80 | CRegID regId(str); |
no outgoing calls
no test coverage detected