Skip to content

Commit

Permalink
Update datastructure util
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassaldanha committed Sep 20, 2024
1 parent e31e60b commit a7c01b2
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1332,6 +1332,9 @@ public BeaconBlockBody randomBlindedBeaconBlockBody(
if (builder.supportsKzgCommitments()) {
builder.blobKzgCommitments(randomBlobKzgCommitments());
}
if (builder.supportsExecutionRequests()) {
builder.executionRequests(randomExecutionRequests());
}
builderModifier.accept(builder);
return SafeFuture.COMPLETE;
})
Expand Down Expand Up @@ -1491,6 +1494,9 @@ public BeaconBlockBody randomFullBeaconBlockBody(
BeaconBlockBodySchemaDeneb.required(schema).getBlobKzgCommitmentsSchema(),
this::randomSszKZGCommitment));
}
if (builder.supportsExecutionRequests()) {
builder.executionRequests(randomExecutionRequests());
}
builderModifier.accept(builder);
return SafeFuture.COMPLETE;
})
Expand Down

0 comments on commit a7c01b2

Please sign in to comment.