From aa72aa87790277619d12c27f1ebc864d23739557 Mon Sep 17 00:00:00 2001 From: Brooks Date: Mon, 30 Jan 2023 23:25:19 -0500 Subject: [PATCH] Makes AccountsDb::bank_hashes private (#29990) --- runtime/src/accounts_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 6310efe0a0..3ce5729bdb 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -1331,7 +1331,7 @@ pub struct AccountsDb { pub thread_pool_clean: ThreadPool, - pub bank_hashes: RwLock>, + bank_hashes: RwLock>, pub stats: AccountsStats,