accountshareddata.executable is private (#16882)

This commit is contained in:
Jeff Washington (jwash) 2021-04-28 12:01:31 -05:00 committed by GitHub
parent 77f1ffd84b
commit 9218b51de7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ pub struct AccountSharedData {
/// the program that owns this account. If executable, the program that loads this account.
owner: Pubkey,
/// this account's data contains a loaded program (and is now read-only)
pub executable: bool,
executable: bool,
/// the epoch at which this account will next owe rent
pub rent_epoch: Epoch,
}