Skip to content

Commit

Permalink
Fix the code feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Mar 28, 2024
1 parent afd869d commit 0cd99a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/cli/test/sim/multi_fork.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,10 @@ await checkpointSync.execution.job.stop();
// Unknown block sync
// ========================================================
const headForUnknownBlockSync = await env.nodes[0].beacon.api.beacon.getBlockV2("head");
const blobsForUnknownBlockSync = await env.nodes[0].beacon.api.beacon.getBlobSidecars("head");
ApiError.assert(headForUnknownBlockSync);
const blobsForUnknownBlockSync = await env.nodes[0].beacon.api.beacon.getBlobSidecars(
headForUnknownBlockSync.response.data.message.slot
);
ApiError.assert(blobsForUnknownBlockSync);
const unknownBlockSync = await env.createNodePair({
id: "unknown-block-sync-node",
Expand Down

0 comments on commit 0cd99a8

Please sign in to comment.