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

View File

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