From e8c86ed3e539b6d8990bc055f689a8842124586a Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 15 Oct 2020 19:02:10 +0000 Subject: [PATCH] Drop 'Pubkey' in 'solana validators' header (#12919) (cherry picked from commit 3073dc980163eb3e972df09eb9bb9796bce2032f) Co-authored-by: Michael Vines --- cli-output/src/cli_output.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cli-output/src/cli_output.rs b/cli-output/src/cli_output.rs index a80f3d2c46..79d27c411c 100644 --- a/cli-output/src/cli_output.rs +++ b/cli-output/src/cli_output.rs @@ -132,7 +132,7 @@ impl fmt::Display for CliBlockProduction { "{}", style(format!( " {:<44} {:>15} {:>15} {:>15} {:>23}", - "Identity Pubkey", + "Identity", "Leader Slots", "Blocks Produced", "Skipped Slots", @@ -412,8 +412,8 @@ impl fmt::Display for CliValidators { "{}", style(format!( " {:<44} {:<38} {} {} {} {:>10} {:^8} {}", - "Identity Pubkey", - "Vote Account Pubkey", + "Identity", + "Vote Account", "Commission", "Last Vote", "Root Block", @@ -952,8 +952,8 @@ impl VerboseDisplay for CliValidatorInfo {} impl fmt::Display for CliValidatorInfo { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - writeln_name_value(f, "Validator Identity Pubkey:", &self.identity_pubkey)?; - writeln_name_value(f, " Info Pubkey:", &self.info_pubkey)?; + writeln_name_value(f, "Validator Identity:", &self.identity_pubkey)?; + writeln_name_value(f, " Info Address:", &self.info_pubkey)?; for (key, value) in self.info.iter() { writeln_name_value( f,