chore: remove redundant Send bounds for BlockReader types (#13452)

This commit is contained in:
Dan Cline
2024-12-19 12:57:13 +02:00
committed by GitHub
parent d5a096f52f
commit 2eecf75c35
4 changed files with 10 additions and 10 deletions

View File

@ -158,7 +158,7 @@ where
impl<Provider, Pool, Network, EvmConfig> RpcNodeCore for EthApi<Provider, Pool, Network, EvmConfig>
where
Provider: BlockReader + Send + Sync + Clone + Unpin,
Provider: BlockReader + Clone + Unpin,
Pool: Send + Sync + Clone + Unpin,
Network: Send + Sync + Clone,
EvmConfig: Send + Sync + Clone + Unpin,
@ -193,7 +193,7 @@ where
impl<Provider, Pool, Network, EvmConfig> RpcNodeCoreExt
for EthApi<Provider, Pool, Network, EvmConfig>
where
Provider: BlockReader + Send + Sync + Clone + Unpin,
Provider: BlockReader + Clone + Unpin,
Pool: Send + Sync + Clone + Unpin,
Network: Send + Sync + Clone,
EvmConfig: Send + Sync + Clone + Unpin,