Convert a State enum to a uint8_t and store it in m_state. */
| 78 | |
| 79 | /** Convert a State enum to a uint8_t and store it in m_state. */ |
| 80 | void SetState(State state) { m_state = static_cast<uint8_t>(state); } |
| 81 | |
| 82 | /** Whether this announcement is selected. There can be at most 1 selected peer per txhash. */ |
| 83 | bool IsSelected() const |
no outgoing calls
no test coverage detected