Skip to content

Commit

Permalink
Revert hardcoded blob count for execution layer stub
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashatyrev committed Feb 3, 2025
1 parent b9a773e commit 9e60deb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class ExecutionLayerChannelStub implements ExecutionLayerChannel {
private final Random random = new Random();

private PayloadStatus payloadStatus = PayloadStatus.VALID;
private Optional<Integer> blobsToGenerate = Optional.of(1);
private Optional<Integer> blobsToGenerate = Optional.empty();

// transition emulation
private static final Bytes32 TERMINAL_BLOCK_PARENT_HASH = Bytes32.ZERO;
Expand Down

0 comments on commit 9e60deb

Please sign in to comment.