`solana account` now displays the account's rent epoch (#9114)
This commit is contained in:
parent
a9564d207b
commit
864d212c64
|
@ -1185,6 +1185,7 @@ fn process_show_account(
|
||||||
);
|
);
|
||||||
println_name_value("Owner:", &account.owner.to_string());
|
println_name_value("Owner:", &account.owner.to_string());
|
||||||
println_name_value("Executable:", &account.executable.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 {
|
if let Some(output_file) = output_file {
|
||||||
let mut f = File::create(output_file)?;
|
let mut f = File::create(output_file)?;
|
||||||
|
|
Loading…
Reference in New Issue