mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Remvoe 3 dots from hash formatting
This commit is contained in:
parent
cf8f9d609a
commit
2873d14a98
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue