Skip to content

Commit

Permalink
Remove println and revert Timestamp change
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminsavage committed Nov 2, 2023
1 parent 668489e commit e50cbea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/protocol/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ pub use basics::BasicProtocols;

use crate::{
error::Error,
ff::{Gf32Bit, Gf3Bit, Gf40Bit, Gf8Bit},
ff::{Gf20Bit, Gf3Bit, Gf40Bit, Gf8Bit},
};

pub type MatchKey = Gf40Bit;
pub type BreakdownKey = Gf8Bit;
pub type TriggerValue = Gf3Bit;
pub type Timestamp = Gf32Bit;
pub type Timestamp = Gf20Bit;

/// Unique identifier of the MPC query requested by report collectors
/// TODO(615): Generating this unique id may be tricky as it may involve communication between helpers and
Expand Down
2 changes: 0 additions & 2 deletions src/query/runner/oprf_ipa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ where
let histogram = compute_histogram_of_users_with_row_count(&input);
let ref_to_histogram = &histogram;

println!("histogram: {:?}", &histogram);

// TODO: Compute OPRFs and shuffle and add dummies and stuff (Daniel's code will be called here)
let sharded_input = input
.into_iter()
Expand Down

0 comments on commit e50cbea

Please sign in to comment.