mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: remove redundant Send bounds for BlockReader types (#13452)
This commit is contained in:
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user