Remove ... at end of hex IDs

This commit is contained in:
Alex 2022-02-21 16:59:37 +01:00
parent 12215a1997
commit 159047c6f6
Signed by untrusted user: lx
GPG key ID: 0E496D15096376BE

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