From 7879fa509560a21c51d3c5e45cbbcde1ff446878 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Tue, 10 Dec 2019 08:29:54 -0700 Subject: [PATCH] Better space out show-stake-history columns --- cli/src/stake.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/stake.rs b/cli/src/stake.rs index b02c529f48..4eac69351d 100644 --- a/cli/src/stake.rs +++ b/cli/src/stake.rs @@ -725,7 +725,7 @@ pub fn process_show_stake_history( println!( "{}", style(format!( - " {:<5} {:>15} {:>16} {:>18}", + " {:<5} {:>20} {:>20} {:>20}", "Epoch", "Effective Stake", "Activating Stake", "Deactivating Stake", )) .bold() @@ -733,7 +733,7 @@ pub fn process_show_stake_history( for (epoch, entry) in stake_history.deref() { println!( - " {:>5} {:>15} {:>16} {:>18} {}", + " {:>5} {:>20} {:>20} {:>20} {}", epoch, build_balance_message(entry.effective, use_lamports_unit, false), build_balance_message(entry.activating, use_lamports_unit, false),