From 9e9a1a4876a325960badfd0ae1ade6ec1c0855a8 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Mon, 13 Dec 2021 10:59:33 -0600 Subject: [PATCH] AcctIdx: AccountInfo.lamports private (#21819) --- runtime/src/account_info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/account_info.rs b/runtime/src/account_info.rs index eb4a9d5ea3..4663f4d7e7 100644 --- a/runtime/src/account_info.rs +++ b/runtime/src/account_info.rs @@ -14,7 +14,7 @@ pub struct AccountInfo { /// lamports in the account used when squashing kept for optimization /// purposes to remove accounts with zero balance. - pub lamports: u64, + lamports: u64, } impl ZeroLamport for AccountInfo {