From 92b8b20ca5796b78a7b61a3f0a4135959af74356 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" <75863576+jeffwashington@users.noreply.github.com> Date: Mon, 3 May 2021 12:25:31 -0500 Subject: [PATCH] AccountSharedData.lamports private (#16985) --- 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 7fc5f00b7e..195ff71bc5 100644 --- a/sdk/src/account.rs +++ b/sdk/src/account.rs @@ -31,7 +31,7 @@ pub struct Account { #[derive(PartialEq, Eq, Clone, Default, AbiExample)] pub struct AccountSharedData { /// lamports in the account - pub lamports: u64, + lamports: u64, /// data held in this account data: Arc>, /// the program that owns this account. If executable, the program that loads this account.