diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 28bebc8511..ecac182a28 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -765,11 +765,13 @@ struct RemoveUnrootedSlotsSynchronization { signal: Condvar, } +type AccountInfoAccountsIndex = AccountsIndex; + // This structure handles the load/store of the accounts #[derive(Debug)] pub struct AccountsDb { /// Keeps tracks of index into AppendVec on a per slot basis - pub accounts_index: AccountsIndex, + pub accounts_index: AccountInfoAccountsIndex, pub storage: AccountStorage,