From 050496fce0036d36d1428005ed8f09b735221303 Mon Sep 17 00:00:00 2001 From: curiecrypt Date: Thu, 19 Dec 2024 20:58:58 +0300 Subject: [PATCH] changed data length --- src/utils/types.rs | 2 +- tests/centralized_telescope.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/types.rs b/src/utils/types.rs index 9ff80a8d..f99ff5cd 100644 --- a/src/utils/types.rs +++ b/src/utils/types.rs @@ -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]; diff --git a/tests/centralized_telescope.rs b/tests/centralized_telescope.rs index 979bafdb..330b102e 100644 --- a/tests/centralized_telescope.rs +++ b/tests/centralized_telescope.rs @@ -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());