Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
yancyribbens committed Dec 14, 2024
1 parent e2369f8 commit 367087e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coin_grinder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ mod tests {
let eff_values: Vec<(Amount, &Utxo)> = calc_effective_values(&utxos, FeeRate::ZERO);
let min_group_weight = build_min_group_weight(eff_values.clone());

let expect: Vec<Weight> = vec![
let expect: Vec<Weight> = [
4u64,
4u64,
8u64,
Expand All @@ -339,7 +339,7 @@ mod tests {
let available_value = Amount::from_str("26 sats").unwrap();
let lookahead = build_lookahead(eff_values, available_value);

let expect: Vec<Amount> = vec![
let expect: Vec<Amount> = [
"16 sats",
"9 sats",
"4 sats",
Expand Down

0 comments on commit 367087e

Please sign in to comment.