Skip to content

Commit df9737a

Browse files
committed
DO NOT MERGE
1 parent a956b7d commit df9737a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

mithril-aggregator/src/services/prover.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ impl ProverService for MithrilProverService {
129129

130130
// 2 - Compute block ranges sub Merkle trees
131131
let mk_trees: StdResult<Vec<(BlockRange, MKTree)>> = block_range_transactions
132-
.into_par_iter()
132+
//.into_par_iter()
133+
.into_iter()
133134
.map(|(block_range, transactions)| {
134135
let mk_tree = MKTree::new(&transactions)?;
135136
Ok((block_range, mk_tree))

mithril-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "time"] }
105105
mithril-build-script = { path = "../internal/mithril-build-script", version = "=0.2" }
106106

107107
[features]
108-
default = []
108+
default = ["allow_skip_signer_certification"]
109109

110110
# Full feature set
111111
full = ["random", "fs", "test_tools"]

0 commit comments

Comments
 (0)