| 209 | { |
| 210 | using result_type = ByTimeView; |
| 211 | result_type operator()(const Announcement& ann) const |
| 212 | { |
| 213 | return ByTimeView{GetWaitState(ann), ann.m_time}; |
| 214 | } |
| 215 | }; |
| 216 | |
| 217 | /** Data type for the main data structure (Announcement objects with ByPeer/ByTxHash/ByTime indexes). */ |
nothing calls this directly
no test coverage detected