mirror of
https://github.com/sigp/lighthouse.git
synced 2026-07-02 12:24:29 +00:00
Gloas lookup sync (#9155)
Co-Authored-By: dapplion <35266934+dapplion@users.noreply.github.com> Co-Authored-By: Pawan Dhananjay <pawandhananjay@gmail.com>
This commit is contained in:
@@ -3397,6 +3397,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
{
|
||||
return Err(BlockError::ParentUnknown {
|
||||
parent_root: blob.block_parent_root(),
|
||||
parent_block_hash: None,
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -3523,7 +3524,10 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
.fork_choice_read_lock()
|
||||
.contains_block(&parent_root)
|
||||
{
|
||||
return Err(BlockError::ParentUnknown { parent_root });
|
||||
return Err(BlockError::ParentUnknown {
|
||||
parent_root,
|
||||
parent_block_hash: None,
|
||||
});
|
||||
}
|
||||
|
||||
self.emit_sse_data_column_sidecar_events(
|
||||
|
||||
Reference in New Issue
Block a user