diff --git a/substrate/srml/support/src/storage/hashed/generator.rs b/substrate/srml/support/src/storage/hashed/generator.rs index cff375e1f6..4d367fb2a8 100644 --- a/substrate/srml/support/src/storage/hashed/generator.rs +++ b/substrate/srml/support/src/storage/hashed/generator.rs @@ -27,7 +27,7 @@ pub trait StorageHasher: 'static { fn hash(x: &[u8]) -> Self::Output; } -/// Hash storage keys with `concat(twox128(key), key)` +/// Hash storage keys with `concat(twox64(key), key)` pub struct Twox64Concat; impl StorageHasher for Twox64Concat { type Output = Vec;