Remvoe 3 dots from hash formatting

This commit is contained in:
Yoni 2019-01-12 17:19:30 +02:00
parent cf8f9d609a
commit 2873d14a98

View file

@ -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])
}
}