Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
yancyribbens committed Jan 8, 2025
1 parent 035909c commit b3892be
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/branch_and_bound.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ use crate::WeightedUtxo;
/// - Not enough potential amount to meet the target, etc
/// - Target Amount is zero (no match possible)
/// - UTXO space was searched succefully however no match was found
// This search explores a binary tree. The left branch of each node is the inclusion branch and
// the right branch is the exclusion branch.
// o
Expand Down Expand Up @@ -293,7 +292,7 @@ pub fn select_coins_bnb<Utxo: WeightedUtxo>(
iteration += 1;
}

return index_to_utxo_list(best_selection, w_utxos);
index_to_utxo_list(best_selection, w_utxos)
}

fn index_to_utxo_list<Utxo: WeightedUtxo>(
Expand Down

0 comments on commit b3892be

Please sign in to comment.