| 61 | // (e.g. a wrapped CTxMemPoolEntry&) |
| 62 | template <typename T> |
| 63 | bool operator()(const std::reference_wrapper<T>& a, const std::reference_wrapper<T>& b) const |
| 64 | { |
| 65 | return a.get().GetTx().GetHash() < b.get().GetTx().GetHash(); |
| 66 | } |
| 67 | template <typename T> |
| 68 | bool operator()(const T& a, const T& b) const |
| 69 | { |