From 706306645b027d2a753e1d9f406a4e5b6ab98ce6 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 26 Mar 2020 22:20:00 -0700 Subject: [PATCH] `solana account` now displays the account's rent epoch --- cli/src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/cli.rs b/cli/src/cli.rs index b7189bcf17..6805b778f5 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -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)?;