From deb7ac549c4815eb1b3ca76ce8066e29391f6068 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sun, 8 Dec 2019 10:06:35 -0700 Subject: [PATCH] Adjust show-validators column alignment (#7359) automerge --- cli/src/cluster_query.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/cluster_query.rs b/cli/src/cluster_query.rs index 784d844da0..2ce9c52aec 100644 --- a/cli/src/cluster_query.rs +++ b/cli/src/cluster_query.rs @@ -591,7 +591,7 @@ pub fn process_show_validators(rpc_client: &RpcClient, use_lamports_unit: bool) println!( "{}", style(format!( - " {:<44} {:<44} {:<11} {:>10} {:>11} {}", + " {:<44} {:<44} {} {} {} {}", "Identity Pubkey", "Vote Account Pubkey", "Commission", @@ -616,7 +616,7 @@ pub fn process_show_validators(rpc_client: &RpcClient, use_lamports_unit: bool) } } println!( - "{} {:<44} {:<44} {:>3}% {:>10} {:>11} {:>11}", + "{} {:<44} {:<44} {:>9}% {:>8} {:>10} {:>12}", if delinquent { WARNING.to_string() } else {