Skip to content

Commit

Permalink
add missing blocking_task_pool
Browse files Browse the repository at this point in the history
  • Loading branch information
fgimenez committed Sep 19, 2024
1 parent 0e37486 commit 550465e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/engine/tree/src/tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,8 @@ pub struct EngineApiTreeHandler<P, E, T: EngineTypes, Spec> {
metrics: EngineApiMetrics,
/// An invalid block hook.
invalid_block_hook: Box<dyn InvalidBlockHook>,
/// Blocking task pool.
blocking_task_pool: BlockingTaskPool,
}

impl<P: Debug, E: Debug, T: EngineTypes + Debug, Spec: Debug> std::fmt::Debug
Expand Down Expand Up @@ -567,6 +569,7 @@ where
metrics: Default::default(),
incoming_tx,
invalid_block_hook: Box::new(NoopInvalidBlockHook),
blocking_task_pool,
}
}

Expand Down

0 comments on commit 550465e

Please sign in to comment.