Skip to content

Commit

Permalink
DO NOT MERGE
Browse files Browse the repository at this point in the history
  • Loading branch information
jpraynaud committed May 23, 2024
1 parent a956b7d commit df9737a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mithril-aggregator/src/services/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ impl ProverService for MithrilProverService {

// 2 - Compute block ranges sub Merkle trees
let mk_trees: StdResult<Vec<(BlockRange, MKTree)>> = 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))
Expand Down
2 changes: 1 addition & 1 deletion mithril-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit df9737a

Please sign in to comment.