Merge pull request #9223

36ee12b get_block_template_backlog: better sorting logic (SChernykh)
This commit is contained in:
luigi1111
2024-03-08 13:46:09 -05:00

View File

@@ -1075,7 +1075,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;