Merge pull request #9222

66e5081 get_block_template_backlog: better sorting logic (SChernykh)
pull/9225/head
luigi1111 2 months ago
commit d6d55b507a
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1074,7 +1074,7 @@ namespace cryptonote
// If the total weight is too high, choose the best paying transactions
if (total_weight > max_backlog_weight)
std::sort(tmp.begin(), tmp.end(), [](const auto& a, const auto& b){ return a.fee * b.weight > b.fee * a.weight; });
std::stable_sort(tmp.begin(), tmp.end(), [](const auto& a, const auto& b){ return a.fee * b.weight > b.fee * a.weight; });
backlog.clear();
uint64_t w = 0;

Loading…
Cancel
Save