Improve get-epoch-info output for longer epoch durations

This commit is contained in:
Michael Vines
2019-12-09 22:34:04 -07:00
parent a33bcac52f
commit 5e0a69f68b
3 changed files with 3 additions and 5 deletions

View File

@@ -360,11 +360,7 @@ pub fn process_get_epoch_info(
);
println_name_value(
"Time remaining in current epoch:",
&format!(
"{} minutes, {} seconds",
remaining_time_in_epoch.as_secs() / 60,
remaining_time_in_epoch.as_secs() % 60
),
&humantime::format_duration(remaining_time_in_epoch).to_string(),
);
Ok("".to_string())
}