Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Jul 28, 2023
1 parent b8a69f2 commit 6e82771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beacon-node/src/api/impl/beacon/blocks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export function getBeaconBlockApi({
signedBlobs.map((sblob) => sblob.message),
// don't bundle any bytes for block and blobs
null,
signedBlobs.map((_sblob) => null)
signedBlobs.map(() => null)
);
} else {
signedBlock = signedBlockOrContents;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ describe("beaconBlocksMaybeBlobsByRange", () => {
source: BlockSource.byRange,
blobs,
blockBytes: null,
blobsBytes: blobs.map(() => null),
};
});

Expand Down

0 comments on commit 6e82771

Please sign in to comment.