Skip to content

Commit

Permalink
Change alignment to accommodate huge balance amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
CriesofCarrots committed Dec 30, 2024
1 parent ec53f85 commit 4cb670f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli-output/src/cli_output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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(),
Expand Down

0 comments on commit 4cb670f

Please sign in to comment.