From 4cb670f54657a667e5df55c5c4ebf5eb38e2db92 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Mon, 30 Dec 2024 14:12:03 -0700 Subject: [PATCH] Change alignment to accommodate huge balance amounts --- cli-output/src/cli_output.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli-output/src/cli_output.rs b/cli-output/src/cli_output.rs index 2b07347ce838f4..9a40161746e393 100644 --- a/cli-output/src/cli_output.rs +++ b/cli-output/src/cli_output.rs @@ -1053,7 +1053,7 @@ impl VerboseDisplay for CliKeyedEpochRewards { writeln!(w, "Epoch Rewards:")?; writeln!( w, - " {:<44} {:<11} {:<23} {:<18} {:<18} {:>14} {:>7} {:>10}", + " {:<44} {:<11} {:<23} {:<18} {:<20} {:>14} {:>7} {:>10}", "Address", "Reward Slot", "Time", @@ -1068,7 +1068,7 @@ impl VerboseDisplay for CliKeyedEpochRewards { Some(reward) => { writeln!( w, - " {:<44} {:<11} {:<23} ◎{:<17.9} ◎{:<17.9} {:>13.9}% {:>7} {:>10}", + " {:<44} {:<11} {:<23} ◎{:<17.9} ◎{:<19.9} {:>13.9}% {:>7} {:>10}", keyed_reward.address, reward.effective_slot, Utc.timestamp_opt(reward.block_time, 0).unwrap(),