AccountSharedData.lamports private (#16985)

This commit is contained in:
Jeff Washington (jwash) 2021-05-03 12:25:31 -05:00 committed by GitHub
parent a698e34744
commit 92b8b20ca5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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<Vec<u8>>,
/// the program that owns this account. If executable, the program that loads this account.