diff --git a/src/wallet/coinselection.cpp b/src/wallet/coinselection.cpp index 4703521bf3ef65..1b07b42ca7d81e 100644 --- a/src/wallet/coinselection.cpp +++ b/src/wallet/coinselection.cpp @@ -13,6 +13,7 @@ #include #include +#include #include #include #include @@ -336,6 +337,9 @@ util::Result CoinGrinder(std::vector& utxo_pool, c best_selection_weight = curr_weight; best_selection_amount = curr_amount; } + } else if (!best_selection.empty() && curr_weight + min_tail_weight[curr_selection.back()] * std::ceil((selection_target + change_target - curr_amount) / utxo_pool[curr_selection.back()].GetSelectionAmount()) > best_selection_weight) { + // Compare minimal tail weight and last selected amount with the amount missing to gauge whether a better weight is still possible. + should_cut = true; } if (curr_try >= TOTAL_TRIES) { diff --git a/src/wallet/test/coinselector_tests.cpp b/src/wallet/test/coinselector_tests.cpp index c0ad07865db7b8..56350f1edebdcf 100644 --- a/src/wallet/test/coinselector_tests.cpp +++ b/src/wallet/test/coinselector_tests.cpp @@ -1110,7 +1110,7 @@ BOOST_AUTO_TEST_CASE(coin_grinder_tests) // 3) Select coins without surpassing the max weight (some coins surpasses the max allowed weight, some others not) // 4) Test that two less valuable UTXOs with a combined lower weight are preferred over a more valuable heavier UTXO // 5) Test that a solution among many clones is found - // 6) Lots of tiny UTXOs of different amounts quickly exhausts the search attempts + // 6) Test that lots of tiny UTXOs can be skipped if they are too heavy while there are enough funds in lookahead FastRandomContext rand; CoinSelectionParams dummy_params{ // Only used to provide the 'avoid_partial' flag. @@ -1179,7 +1179,7 @@ BOOST_AUTO_TEST_CASE(coin_grinder_tests) }); BOOST_CHECK(res); // If this takes more attempts, the implementation has regressed - size_t expected_attempts = 184; + size_t expected_attempts = 37; BOOST_CHECK_MESSAGE(res->GetSelectionsEvaluated() == expected_attempts, strprintf("Expected %i attempts, but got %i", expected_attempts, res->GetSelectionsEvaluated())); } @@ -1248,7 +1248,7 @@ BOOST_AUTO_TEST_CASE(coin_grinder_tests) { // ################################################################################################################# - // 6) Lots of tiny UTXOs of different amounts quickly exhausts the search attempts + // 6) Test that lots of tiny UTXOs can be skipped if they are too heavy while there are enough funds in lookahead // ################################################################################################################# SelectionResult expected_result(CAmount(0), SelectionAlgorithm::CG); CAmount target = 1.9L * COIN; @@ -1265,11 +1265,11 @@ BOOST_AUTO_TEST_CASE(coin_grinder_tests) return available_coins; }); expected_result.Clear(); - add_coin(1.8 * COIN, 1, expected_result); + add_coin(1 * COIN, 1, expected_result); add_coin(1 * COIN, 2, expected_result); BOOST_CHECK(EquivalentResult(expected_result, *res)); // If this takes more attempts, the implementation has regressed - size_t expected_attempts = 100'000; + size_t expected_attempts = 7; BOOST_CHECK_MESSAGE(res->GetSelectionsEvaluated() == expected_attempts, strprintf("Expected %i attempts, but got %i", expected_attempts, res->GetSelectionsEvaluated())); } }