mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat(exex): backfill on subscription with head (#10787)
This commit is contained in:
@ -48,7 +48,12 @@ impl<Node: FullNodeComponents + Clone> ExExLauncher<Node> {
|
||||
|
||||
for (id, exex) in extensions {
|
||||
// create a new exex handle
|
||||
let (handle, events, notifications) = ExExHandle::new(id.clone(), components.clone());
|
||||
let (handle, events, notifications) = ExExHandle::new(
|
||||
id.clone(),
|
||||
head,
|
||||
components.provider().clone(),
|
||||
components.block_executor().clone(),
|
||||
);
|
||||
exex_handles.push(handle);
|
||||
|
||||
// create the launch context for the exex
|
||||
|
||||
Reference in New Issue
Block a user