chore(lint): fix clippy::needles_lifetimes (#11496)

This commit is contained in:
Emilia Hane
2024-10-05 13:08:08 +02:00
committed by GitHub
parent 28750e5b0e
commit 36de90fdc3
26 changed files with 75 additions and 75 deletions

View File

@@ -254,7 +254,7 @@ pub struct RpcContext<'a, Node: FullNodeComponents, EthApi: EthApiTypes> {
pub auth_module: &'a mut AuthRpcModule,
}
impl<'a, Node, EthApi> RpcContext<'a, Node, EthApi>
impl<Node, EthApi> RpcContext<'_, Node, EthApi>
where
Node: FullNodeComponents,
EthApi: EthApiTypes,