Skip to content

Commit

Permalink
Remove extra seq_join
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Dec 7, 2023
1 parent d3d7426 commit 8eef9eb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ipa-core/src/protocol/ipa_prf/prf_sharding/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,7 @@ where
}));

// Execute all of the async futures (sequentially), and flatten the result
let flattenned_stream = seq_join(sh_ctx.active_work(), stream_of_per_user_circuits)
.flat_map(|x| stream_iter(x.unwrap()));
let flattenned_stream = stream_of_per_user_circuits.flat_map(|x| stream_iter(x.unwrap()));

// modulus convert breakdown keys and trigger values
let converted_bks_and_tvs = convert_bits(
Expand Down

0 comments on commit 8eef9eb

Please sign in to comment.