Skip to content

Commit

Permalink
fix: update electra BuilderBid container
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Oct 16, 2024
1 parent 1c84d36 commit 1f3d732
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ export async function produceBlockBody<T extends BlockType>(
throw Error(`Missing blobsBundle response from getPayload at fork=${fork}`);
}

// validate blindedBlobsBundle
if (this.opts.sanityCheckExecutionEngineBlobs) {
validateBlobsAndKzgCommitments(executionPayload, blobsBundle);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/types/src/electra/sszTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export const SignedBlindedBeaconBlock = new ContainerType(
export const BuilderBid = new ContainerType(
{
header: ExecutionPayloadHeader, // Modified in ELECTRA
blindedBlobsBundle: denebSsz.BlobKzgCommitments,
blobKzgCommitments: denebSsz.BlobKzgCommitments,
executionRequests: ExecutionRequests, // New in ELECTRA
value: UintBn256,
pubkey: BLSPubkey,
Expand Down

0 comments on commit 1f3d732

Please sign in to comment.