Skip to content
Snippets Groups Projects
Commit e4ed8241 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix an unwrap() error.

parent 8c348966
No related branches found
No related tags found
1 merge request!384arti-bench: support multiple streams per circuit, multiple circuits per sample.
......@@ -357,7 +357,7 @@ fn main() -> Result<()> {
.unwrap()
.parse::<usize>()?;
let samples = matches.value_of("num-samples").unwrap().parse::<usize>()?;
let streams_per_circ = matches.value_of("num-parallel").unwrap().parse::<usize>()?;
let streams_per_circ = matches.value_of("num-streams").unwrap().parse::<usize>()?;
let circs_per_sample = matches.value_of("num-circuits").unwrap().parse::<usize>()?;
info!("Generating test payloads, please wait...");
let upload_payload = random_payload(upload_bytes).into();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment