private AccountSharedData.rent_epoch (#16877)

This commit is contained in:
Jeff Washington (jwash)
2021-04-28 08:52:20 -05:00
committed by GitHub
parent 6381ee38eb
commit da3342759b
5 changed files with 19 additions and 17 deletions

View File

@ -2105,7 +2105,7 @@ fn main() {
println!(" - owner: '{}'", account.owner());
println!(" - executable: {}", account.executable());
println!(" - slot: {}", slot);
println!(" - rent_epoch: {}", account.rent_epoch);
println!(" - rent_epoch: {}", account.rent_epoch());
if !exclude_account_data {
println!(" - data: '{}'", bs58::encode(account.data()).into_string());
}