Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Mar 27, 2024
1 parent 3c20522 commit 8386f21
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions crates/topos-certificate-spammer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,16 +329,14 @@ pub async fn run(
target_subnets
};

let new_cert = match generate_test_certificate(
source_subnet,
target_subnet_ids.as_slice(),
) {
Ok(cert) => cert,
Err(e) => {
error!("Unable to generate certificate: {e}");
continue;
}
};
let new_cert =
match generate_test_certificate(source_subnet, target_subnets.as_slice()) {
Ok(cert) => cert,
Err(e) => {
error!("Unable to generate certificate: {e}");
continue;
}
};
debug!("New cert number {b} in batch {batch_number} generated");
batch.push(new_cert);
}
Expand Down

0 comments on commit 8386f21

Please sign in to comment.