This commit is contained in:
Eitan Seri-Levi
2025-03-20 23:59:47 -06:00
parent 77e86b102d
commit 3b86e5132f

View File

@@ -2394,9 +2394,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
GossipVerifiedInclusionList::verify(inclusion_list, self).inspect(|v| {
metrics::inc_counter(&metrics::INCLUSION_LIST_PROCESSING_SUCCESSES);
if let Some(event_handler) = self.event_handler.as_ref() {
event_handler.register(EventKind::InclusionList(Box::new(
v.signed_il.clone(),
)));
event_handler.register(EventKind::InclusionList(Box::new(v.signed_il.clone())));
}
})
}