Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Dec 24, 2024
1 parent 0c806a9 commit a0e4589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public Optional<BlobSidecar> getBlobSidecar(final UInt64 index) {

public Stream<BlobIdentifier> getMissingBlobSidecars() {
final Optional<Integer> blockCommitmentsCount = getBlockKzgCommitmentsCount();
checkState(blockCommitmentsCount.isPresent(), "Block must me known to call this method");
checkState(blockCommitmentsCount.isPresent(), "Block must be known to call this method");

return UInt64.range(UInt64.ZERO, UInt64.valueOf(blockCommitmentsCount.get()))
.filter(blobIndex -> !blobSidecars.containsKey(blobIndex))
Expand Down

0 comments on commit a0e4589

Please sign in to comment.