From a6e6ec63f1a9003d71d8017139424fcf4f5b61e8 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2019 08:56:31 -0800 Subject: [PATCH] Better space out show-stake-history columns (#7403) automerge --- 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 5222004e9c..d0e3fc7571 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),