| 945 | { |
| 946 | public: |
| 947 | bool operator()(const CTxMemPool::indexed_transaction_set::const_iterator& a, const CTxMemPool::indexed_transaction_set::const_iterator& b) |
| 948 | { |
| 949 | uint64_t counta = a->GetCountWithAncestors(); |
| 950 | uint64_t countb = b->GetCountWithAncestors(); |
| 951 | if (counta == countb) { |
| 952 | return CompareTxMemPoolEntryByScore()(*a, *b); |
| 953 | } |
| 954 | return counta < countb; |
| 955 | } |
| 956 | }; |
| 957 | } // namespace |
| 958 |
nothing calls this directly
no test coverage detected