Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Oct 23, 2024
1 parent 23f7f32 commit 33b5e53
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,9 @@ private List<ProposerDuty> getProposalSlotsForEpoch(final BeaconState state, fin
private boolean isLocallyCreatedBlock(final SignedBlockContainer blockContainer) {
final SafeFuture<Optional<BlockContainerAndMetaData>> localBlockProduction =
localBlockProductionBySlotCache.get(blockContainer.getSlot());
if (localBlockProduction == null) {
return false;
}
return localBlockProduction.isCompletedNormally();
}

Expand Down

0 comments on commit 33b5e53

Please sign in to comment.