Remove ... at end of hex IDs

This commit is contained in:
Alex 2022-02-21 16:59:37 +01:00
parent bb04d94fa9
commit 55d4471599
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 1 additions and 1 deletions

View File

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