chore(execution): rename EVMProcessor factory (#5533)

This commit is contained in:
Roman Krasiuk
2023-11-22 09:03:12 -08:00
committed by GitHub
parent 5ae4fd1c65
commit 9ecdea7eef
17 changed files with 49 additions and 45 deletions

View File

@ -101,9 +101,9 @@ impl Case for BlockchainTestCase {
// Call execution stage
{
let mut stage = ExecutionStage::new_with_factory(reth_revm::Factory::new(
Arc::new(case.network.clone().into()),
));
let mut stage = ExecutionStage::new_with_factory(
reth_revm::EvmProcessorFactory::new(Arc::new(case.network.clone().into())),
);
let target = last_block.as_ref().map(|b| b.number);
tokio::runtime::Builder::new_current_thread()