From df9737adf2f6e64708bc7df0858a066f1f7024ab Mon Sep 17 00:00:00 2001 From: Jean-Philippe Raynaud Date: Thu, 16 May 2024 12:31:39 +0200 Subject: [PATCH] DO NOT MERGE --- mithril-aggregator/src/services/prover.rs | 3 ++- mithril-common/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mithril-aggregator/src/services/prover.rs b/mithril-aggregator/src/services/prover.rs index ac0e93a8923..80b9b8554cc 100644 --- a/mithril-aggregator/src/services/prover.rs +++ b/mithril-aggregator/src/services/prover.rs @@ -129,7 +129,8 @@ impl ProverService for MithrilProverService { // 2 - Compute block ranges sub Merkle trees let mk_trees: StdResult> = block_range_transactions - .into_par_iter() + //.into_par_iter() + .into_iter() .map(|(block_range, transactions)| { let mk_tree = MKTree::new(&transactions)?; Ok((block_range, mk_tree)) diff --git a/mithril-common/Cargo.toml b/mithril-common/Cargo.toml index 4ae87cef133..4c233bb2022 100644 --- a/mithril-common/Cargo.toml +++ b/mithril-common/Cargo.toml @@ -105,7 +105,7 @@ tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "time"] } mithril-build-script = { path = "../internal/mithril-build-script", version = "=0.2" } [features] -default = [] +default = ["allow_skip_signer_certification"] # Full feature set full = ["random", "fs", "test_tools"]