From 864d212c647260adc2449fc4713c74d86cf88956 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 27 Mar 2020 08:58:21 -0700 Subject: [PATCH] `solana account` now displays the account's rent epoch (#9114) --- cli/src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/cli.rs b/cli/src/cli.rs index 313927661e..3550b30332 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -1185,6 +1185,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)?;