From 08d1933105a3468ca96a11df24482d1462f0df11 Mon Sep 17 00:00:00 2001 From: thiolliere Date: Mon, 22 Jul 2019 14:01:13 +0200 Subject: [PATCH] fix doc (#3162) --- substrate/srml/support/src/storage/hashed/generator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;