chore: remove Block generic from apply_pre_execution_changes (#13743)

This commit is contained in:
Dan Cline
2025-01-08 23:32:22 -05:00
committed by GitHub
parent ceaa3d3705
commit fd092a267e
3 changed files with 13 additions and 14 deletions

View File

@ -95,7 +95,7 @@ where
SystemCaller::new(self.evm_config.clone(), self.provider.chain_spec());
// Apply pre-block system contract calls.
system_caller.apply_pre_execution_changes(&block.clone().unseal().block, &mut evm)?;
system_caller.apply_pre_execution_changes(block.header(), &mut evm)?;
// Re-execute all of the transactions in the block to load all touched accounts into
// the cache DB.