Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Dec 18, 2024
1 parent c883096 commit 13721c4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,7 @@ public synchronized int getTotalBlobSidecarsTrackers() {
return blockBlobSidecarsTrackers.size();
}

@SuppressWarnings("FutureReturnValueIgnored")
private BlockBlobSidecarsTracker internalOnNewBlock(
final SignedBeaconBlock block, final Optional<RemoteOrigin> remoteOrigin) {
final SlotAndBlockRoot slotAndBlockRoot = block.getSlotAndBlockRoot();
Expand Down Expand Up @@ -594,7 +595,7 @@ private void onFirstSeen(
final Duration blockFetchDelay = calculateBlockFetchDelay(slotAndBlockRoot);
asyncRunner.runAfterDelay(() -> fetchMissingContent(slotAndBlockRoot), blockFetchDelay);
}
// no delay for attempting to fetch blobs for when the block is first seen
// no delay for attempting to fetch blobs for when the block is first seen
case BLOCK -> asyncRunner.runAsync(() -> fetchMissingContent(slotAndBlockRoot));
}
}
Expand Down

0 comments on commit 13721c4

Please sign in to comment.