Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Oct 4, 2024
1 parent 23cb798 commit 41874fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/subspace-core-primitives/src/hashes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub fn blake3_hash_with_key(key: &[u8; 32], data: &[u8]) -> Blake3Hash {
blake3::keyed_hash(key, data).as_bytes().into()
}

/// BLAKE3 keyed hashing of a single value.
/// BLAKE3 keyed hashing of a list of values.
#[inline]
pub fn blake3_hash_list_with_key(key: &[u8; 32], data: &[&[u8]]) -> Blake3Hash {
let mut state = blake3::Hasher::new_keyed(key);
Expand Down

0 comments on commit 41874fc

Please sign in to comment.