refactor: Rename i to curr_try in SelectCoinsBnB

Clarifies purpose and removes name collisions with other indicies.
This commit is contained in:
Ben Woosley 2022-02-28 12:07:57 +00:00
parent 1dd0923677
commit def43a4d88
No known key found for this signature in database
GPG Key ID: 4D8CA4BA18040906

View File

@ -87,7 +87,7 @@ std::optional<SelectionResult> SelectCoinsBnB(std::vector<OutputGroup>& utxo_poo
CAmount best_waste = MAX_MONEY;
// Depth First search loop for choosing the UTXOs
for (size_t i = 0, utxo_pool_index = 0; i < TOTAL_TRIES; ++i, ++utxo_pool_index) {
for (size_t curr_try = 0, utxo_pool_index = 0; curr_try < TOTAL_TRIES; ++curr_try, ++utxo_pool_index) {
// Conditions for starting a backtrack
bool backtrack = false;
if (curr_value + curr_available_value < selection_target || // Cannot possibly reach target with the amount remaining in the curr_available_value.