chore: remove BlockExecutorProvider trait (#15989)

Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>
This commit is contained in:
Federico Gimenez
2025-05-06 13:34:37 +02:00
committed by GitHub
parent cbdb81069f
commit 699b3fde1b
56 changed files with 411 additions and 880 deletions

View File

@@ -195,7 +195,7 @@ pub struct RpcRegistry<Node: FullNodeComponents, EthApi: EthApiTypes> {
Node::Network,
TaskExecutor,
EthApi,
Node::Executor,
Node::Evm,
Node::Consensus,
>,
}
@@ -211,7 +211,7 @@ where
Node::Network,
TaskExecutor,
EthApi,
Node::Executor,
Node::Evm,
Node::Consensus,
>;
@@ -497,7 +497,6 @@ where
.with_network(node.network().clone())
.with_executor(node.task_executor().clone())
.with_evm_config(node.evm_config().clone())
.with_block_executor(node.block_executor().clone())
.with_consensus(node.consensus().clone())
.build_with_auth_server(module_config, engine_api, eth_api);