Skip to content

Commit

Permalink
Get back to data length 32 (#115)
Browse files Browse the repository at this point in the history
## Content

<!-- Explain the reason for this change, if a feature is added, a bug is
fixed, ... -->

This PR includes...

## Pre-submit checklist

- Branch
    - [ ] Tests are provided (if possible)
    - [ ] Commit sequence broadly makes sense
    - [ ] Key commits have useful messages
- PR
    - [ ] No clippy warnings in the CI
    - [ ] Self-reviewed the diff
    - [ ] Useful pull request description
    - [ ] Reviewer requested
- Documentation
    - [ ] Update README file (if relevant)
    - [ ] Update documentation website (if relevant)

## Comments

<!-- Some optional comments about the PR, such as how to run a command,
or warnings about usage, .... -->

## Issue(s)

<!-- The issue(s) this PR relates to or closes -->

Relates to #YYY or Closes #YYY
  • Loading branch information
curiecrypt authored Dec 19, 2024
1 parent 58fb333 commit 727bd6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/types.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub(crate) const DATA_LENGTH: usize = 48;
pub(crate) const DATA_LENGTH: usize = 32;

pub(crate) type Element = [u8; DATA_LENGTH];
2 changes: 1 addition & 1 deletion tests/centralized_telescope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use rand_chacha::ChaCha20Rng;
use rand_core::{RngCore, SeedableRng};
use utils::gen_items;

const DATA_LENGTH: usize = 48;
const DATA_LENGTH: usize = 32;

fn test(created_with_params: bool) {
let mut rng = ChaCha20Rng::from_seed(Default::default());
Expand Down

0 comments on commit 727bd6b

Please sign in to comment.