Parallelize over cases

This commit is contained in:
Omar Abdulla
2025-07-31 13:46:27 +03:00
parent 330a773a1c
commit 989c064983
5 changed files with 151 additions and 136 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ where
{
/// Create a new Pool. This will start as many nodes as there are workers in `config`.
pub fn new(config: &Arguments) -> anyhow::Result<Self> {
let nodes = config.workers;
let nodes = config.number_of_nodes;
let genesis = read_to_string(&config.genesis_file).context(format!(
"can not read genesis file: {}",
config.genesis_file.display()