Skip to content

Commit

Permalink
Remove pub from the lazy static.
Browse files Browse the repository at this point in the history
  • Loading branch information
yhchiang-sol committed Oct 6, 2023
1 parent 4ba611c commit 9093450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts-db/src/account_storage/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub struct StoredAccountInfo {
}

lazy_static! {
pub static ref DEFAULT_ACCOUNT_HASH: Hash = Hash::default();
static ref DEFAULT_ACCOUNT_HASH: Hash = Hash::default();
}

/// Goal is to eliminate copies and data reshaping given various code paths that store accounts.
Expand Down

0 comments on commit 9093450

Please sign in to comment.