Skip to content

Commit 6ac6d9a

Browse files
authored
Merge pull request #155 from carlaKC/fix-parser
sim-cli: remove broken parser for activity multiplier
2 parents 6713c6f + 2f520e5 commit 6ac6d9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sim-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ struct Cli {
4242
#[clap(long, short, default_value_t = EXPECTED_PAYMENT_AMOUNT, value_parser = clap::builder::RangedU64ValueParser::<u64>::new().range(1..u64::MAX))]
4343
expected_pmt_amt: u64,
4444
/// Multiplier of the overall network capacity used by the random activity generator
45-
#[clap(long, short, default_value_t = ACTIVITY_MULTIPLIER, value_parser = clap::builder::RangedU64ValueParser::<u32>::new().range(1..u64::MAX))]
45+
#[clap(long, short, default_value_t = ACTIVITY_MULTIPLIER)]
4646
capacity_multiplier: f64,
4747
/// Do not create an output file containing the simulations results
4848
#[clap(long, default_value_t = false)]

0 commit comments

Comments
 (0)