diff --git a/core/src/core/hash.rs b/core/src/core/hash.rs index 76bd36d2..61a27baa 100644 --- a/core/src/core/hash.rs +++ b/core/src/core/hash.rs @@ -54,11 +54,7 @@ impl fmt::Display for Hash { let starting = &hash_hex[..NUM_SHOW]; let ending = &hash_hex[(len - NUM_SHOW)..]; - write!(f, - "{}...{}", - starting, - ending - ) + write!(f, "{}...{}", starting, ending) } }