From 9218b51de705fb75fc0146670a5911e32d68119c Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" <75863576+jeffwashington@users.noreply.github.com> Date: Wed, 28 Apr 2021 12:01:31 -0500 Subject: [PATCH] accountshareddata.executable is private (#16882) --- sdk/src/account.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/src/account.rs b/sdk/src/account.rs index dab60c377a..559621589c 100644 --- a/sdk/src/account.rs +++ b/sdk/src/account.rs @@ -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, }