| 4791 | // Lists all hashes in mempool |
| 4792 | struct MempoolHashProvider : public TxHashProvider { |
| 4793 | void operator()(std::vector<uint256>& dst) { |
| 4794 | mempool.queryHashes(dst); |
| 4795 | } |
| 4796 | }; |
| 4797 | |
| 4798 | void unexpectedThinError(const std::string& cmd, CNode& from, const std::string& err) { |
nothing calls this directly
no test coverage detected