diff --git a/src/bin/tui/mining.rs b/src/bin/tui/mining.rs index b2efcbb2..61cac6b9 100644 --- a/src/bin/tui/mining.rs +++ b/src/bin/tui/mining.rs @@ -137,13 +137,18 @@ impl TableViewItem for DiffBlock { match column { DiffColumn::Height => self.block_height.to_string(), - DiffColumn::Hash => { // Prints part of the hash's hex + DiffColumn::Hash => { + // Prints part of the hash's hex let hash_hex = self.block_hash.to_hex(); let len = hash_hex.len(); const NUM_SHOW: usize = 8; // Number of characters to show - format!("{}...{}", &hash_hex[..NUM_SHOW / 2], &hash_hex[(len - NUM_SHOW)..]) - }, + format!( + "{}...{}", + &hash_hex[..NUM_SHOW / 2], + &hash_hex[(len - NUM_SHOW)..] + ) + } DiffColumn::PoWType => pow_type, DiffColumn::Difficulty => self.difficulty.to_string(), DiffColumn::SecondaryScaling => self.secondary_scaling.to_string(),