Skip to content

Commit

Permalink
Merge pull request #825 from private-attribution/fix-oprf-attribution
Browse files Browse the repository at this point in the history
Fix OPRF attribution and capping circuit
  • Loading branch information
benjaminsavage authored Nov 1, 2023
2 parents b4760d9 + 2b50c45 commit b380eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/protocol/prf_sharding/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use crate::{
},
BitDecomposed, Linear as LinearSecretSharing, SharedValue,
},
seq_join::{seq_join, seq_try_join_all},
seq_join::seq_join,
};

pub mod bucket;
Expand Down Expand Up @@ -381,7 +381,7 @@ where
attribution_window_seconds,
));
}
let outputs_chunked_by_user = seq_try_join_all(sh_ctx.active_work(), futures).await?;
let outputs_chunked_by_user = sh_ctx.parallel_join(futures).await?;
Ok(outputs_chunked_by_user
.into_iter()
.flatten()
Expand Down

0 comments on commit b380eed

Please sign in to comment.