mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-10 23:15:34 -05:00
chore: require enginetypes 'static (#9645)
This commit is contained in:
@@ -294,7 +294,7 @@ impl<P, E, T> EngineApiTreeHandlerImpl<P, E, T>
|
||||
where
|
||||
P: BlockReader + StateProviderFactory + Clone + 'static,
|
||||
E: BlockExecutorProvider,
|
||||
T: EngineTypes + 'static,
|
||||
T: EngineTypes,
|
||||
{
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn new(
|
||||
@@ -765,7 +765,7 @@ impl<P, E, T> EngineApiTreeHandler for EngineApiTreeHandlerImpl<P, E, T>
|
||||
where
|
||||
P: BlockReader + StateProviderFactory + Clone + 'static,
|
||||
E: BlockExecutorProvider,
|
||||
T: EngineTypes + 'static,
|
||||
T: EngineTypes,
|
||||
{
|
||||
type Engine = T;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user