| 72 | /** What state this announcement is in. */ |
| 73 | State m_state : 3 {State::CANDIDATE_DELAYED}; |
| 74 | State GetState() const { return m_state; } |
| 75 | void SetState(State state) { m_state = state; } |
| 76 | |
| 77 | /** Whether this announcement is selected. There can be at most 1 selected peer per txhash. */ |
no outgoing calls