From 55d44715998d01563fe830d1dbc35745bc9427bf Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 21 Feb 2022 16:59:37 +0100 Subject: [PATCH] Remove ... at end of hex IDs --- src/util/data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/data.rs b/src/util/data.rs index f0744307..7715c2cc 100644 --- a/src/util/data.rs +++ b/src/util/data.rs @@ -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])) } }