Skip to content

Commit

Permalink
fix: ordered
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jul 19, 2024
1 parent daf0e59 commit c34a6da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zero_bin/prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ impl BlockProverInput {
let mut all_txn_aggregatable_proofs = Vec::new();
for chunk in txs.chunks(GENERATION_INPUTS_AGG_CHUNK_SIZE) {
// Map the chunk of transactions to transaction proofs.
let chunk_tx_proof_futs: FuturesUnordered<_> = chunk
let chunk_tx_proof_futs: FuturesOrdered<_> = chunk
.chunks(GENERATION_INPUTS_AGG_CHUNK_SIZE_INNER)
.map(|generation_inputs| {
let chunk_tx_proof_futs: FuturesUnordered<_> = generation_inputs
let chunk_tx_proof_futs: FuturesOrdered<_> = generation_inputs
.iter()
.enumerate()
.map(|(idx, generation_inputs)| {
Expand Down

0 comments on commit c34a6da

Please sign in to comment.