Update fork choice

This commit is contained in:
Eitan Seri-Levi
2025-01-26 10:52:44 +03:00
parent 77551ea1b7
commit d3368f59a3
10 changed files with 46 additions and 32 deletions

View File

@@ -2178,7 +2178,8 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
debug!(self.log, "Successfully verified gossip inclusion list");
// Store validated inclusion list in the IL cache. This also catches
// equivocating IL's and handles them accordingly.
self.chain.on_verified_inclusion_list(gossip_verified_il.signed_il);
self.chain
.on_verified_inclusion_list(gossip_verified_il.signed_il);
}
Err(err) => match err {
GossipInclusionListError::FutureSlot { .. }