Skip to content

Commit e3aa82b

Browse files
committed
fix: disable rpc_db.preload_accounts_and_storage()
1 parent 9dd4c4a commit e3aa82b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/executor/host/src/host_executor.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ impl<C: ConfigureEvm> HostExecutor<C> {
9898
// Setup the database for the block executor.
9999
tracing::info!("setting up the database for the block executor");
100100
let now = std::time::Instant::now();
101-
rpc_db.preload_accounts_and_storage().await.map_err(|e| {
102-
HostError::Custom(format!("Failed to preload accounts and storage: {e}"))
103-
})?;
101+
// rpc_db.preload_accounts_and_storage().await.map_err(|e| {
102+
// HostError::Custom(format!("Failed to preload accounts and storage: {e}"))
103+
// })?;
104104
tracing::info!("preloaded accounts and storage took {:?}", now.elapsed());
105105
let cache_db = CacheDB::new(rpc_db);
106106

0 commit comments

Comments
 (0)