diff --git a/core/src/core/hash.rs b/core/src/core/hash.rs index 378940436..446ee8910 100644 --- a/core/src/core/hash.rs +++ b/core/src/core/hash.rs @@ -41,7 +41,7 @@ impl fmt::Debug for Hash { let hash_hex = self.to_hex(); const NUM_SHOW: usize = 12; - write!(f, "{}...", &hash_hex[..NUM_SHOW]) + write!(f, "{}", &hash_hex[..NUM_SHOW]) } }