Allow dead code for hex_string, since its not used for now

This commit is contained in:
Imbus 2024-03-08 05:26:22 +01:00
parent 211490bd6f
commit 6f69abe973

View file

@ -1,6 +1,7 @@
use rand::Rng; use rand::Rng;
// This will do for now // This will do for now
#[allow(dead_code)]
pub fn hex_string(length: usize) -> String { pub fn hex_string(length: usize) -> String {
let mut rng = rand::thread_rng(); let mut rng = rand::thread_rng();
let mut bytes = vec![0u8; length]; let mut bytes = vec![0u8; length];