solana account now displays the account's rent epoch

This commit is contained in:
Michael Vines
2020-03-26 22:20:00 -07:00
parent da9e930788
commit 706306645b

View File

@ -1181,6 +1181,7 @@ fn process_show_account(
);
println_name_value("Owner:", &account.owner.to_string());
println_name_value("Executable:", &account.executable.to_string());
println_name_value("Rent Epoch:", &account.rent_epoch.to_string());
if let Some(output_file) = output_file {
let mut f = File::create(output_file)?;