| 566 | } |
| 567 | |
| 568 | void ForgetTxHash(const uint256& txhash) |
| 569 | { |
| 570 | auto it = m_index.get<ByTxHash>().lower_bound(ByTxHashView{txhash, State::CANDIDATE_DELAYED, 0}); |
| 571 | while (it != m_index.get<ByTxHash>().end() && it->m_txhash == txhash) { |
| 572 | it = Erase<ByTxHash>(it); |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | void ReceivedInv(NodeId peer, const GenTxid& gtxid, bool preferred, |
| 577 | std::chrono::microseconds reqtime) |
nothing calls this directly
no test coverage detected