forked from Deuxfleurs/garage
Remove ... at end of hex IDs
This commit is contained in:
parent
bb04d94fa9
commit
55d4471599
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ impl std::convert::AsRef<[u8]> for FixedBytes32 {
|
|||
|
||||
impl fmt::Debug for FixedBytes32 {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f, "{}…", hex::encode(&self.0[..8]))
|
||||
write!(f, "{}", hex::encode(&self.0[..8]))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue