Skip to content

Commit

Permalink
Factor aggregation job handling to seperate state machine
Browse files Browse the repository at this point in the history
  • Loading branch information
mendess committed Jan 3, 2025
1 parent 595155c commit 933aaba
Show file tree
Hide file tree
Showing 4 changed files with 489 additions and 310 deletions.
2 changes: 1 addition & 1 deletion crates/daphne/src/protocol/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub(crate) mod report_init;

/// checks if an iterator has no duplicate items, returns the ok if there are no dups or an error
/// with the first offending item.
fn no_duplicates<I>(iterator: I) -> Result<(), I::Item>
pub(crate) fn no_duplicates<I>(iterator: I) -> Result<(), I::Item>
where
I: Iterator,
I::Item: Eq + std::hash::Hash,
Expand Down
309 changes: 0 additions & 309 deletions crates/daphne/src/roles/helper.rs

This file was deleted.

Loading

0 comments on commit 933aaba

Please sign in to comment.