We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dd4c4a commit e3aa82bCopy full SHA for e3aa82b
1 file changed
crates/executor/host/src/host_executor.rs
@@ -98,9 +98,9 @@ impl<C: ConfigureEvm> HostExecutor<C> {
98
// Setup the database for the block executor.
99
tracing::info!("setting up the database for the block executor");
100
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
- })?;
+ // rpc_db.preload_accounts_and_storage().await.map_err(|e| {
+ // HostError::Custom(format!("Failed to preload accounts and storage: {e}"))
+ // })?;
104
tracing::info!("preloaded accounts and storage took {:?}", now.elapsed());
105
let cache_db = CacheDB::new(rpc_db);
106
0 commit comments