mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(execution): rename EVMProcessor factory (#5533)
This commit is contained in:
@ -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()
|
||||
|
||||
Reference in New Issue
Block a user