From 4a9ff47dccc9bda862912732ed3363c176ea7891 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Tue, 7 Oct 2025 23:02:44 +0200 Subject: [PATCH] 12 chars of hex are 6 Bytes not 12 --- src/store/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/mod.rs b/src/store/mod.rs index 52f6ad2..e6537b7 100644 --- a/src/store/mod.rs +++ b/src/store/mod.rs @@ -5,5 +5,5 @@ mod id_store; pub use id_mapping::{IDMapping, Name}; pub use id_store::{IDStore,AttendanceDay}; -pub type TallyID = [u8; 12]; +pub type TallyID = [u8; 6]; pub type Date = [u8; 10];