Skip to content

Commit

Permalink
[changeless] Revert number of candidates
Browse files Browse the repository at this point in the history
changeless should not be that slow but if it fails to find a changeless
solution then the test will exhaustive search so that clearly will take forever.
  • Loading branch information
LLFourn committed Jan 29, 2024
1 parent c6f0682 commit 956685a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/changeless.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ proptest! {
#[test]
#[cfg(not(debug_assertions))] // too slow if compiling for debug
fn compare_against_benchmarks(
n_candidates in 0..50_usize, // candidates (n)
n_candidates in 0..15_usize, // candidates (n)
target_value in 500..1_000_000_u64, // target value (sats)
n_target_outputs in 1..150_usize, // the number of outputs we're funding
target_weight in 0..10_000_u32, // the sum of the weight of the outputs (wu)
Expand Down

0 comments on commit 956685a

Please sign in to comment.