Skip to content

Commit 9e6d8a7

Browse files
committed
Fix garbled blob_kzg_commitments accesses
1 parent e6bddd9 commit 9e6d8a7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

specs/_features/eip7732/p2p-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ The *type* of the payload of this topic changes to the (modified) `SignedBeaconB
130130

131131
There are no new validations for this topic. However, all validations with regards to the `ExecutionPayload` are removed:
132132

133-
- _[REJECT]_ The length of KZG commitments is less than or equal to the limitation defined in Consensus Layer -- i.e. validate that len(body.signed_beacon_block.message.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK
133+
- _[REJECT]_ The length of KZG commitments is less than or equal to the limitation defined in Consensus Layer -- i.e. validate that `len(signed_beacon_block.message.body.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK`
134134
- _[REJECT]_ The block's execution payload timestamp is correct with respect to the slot
135135
-- i.e. `execution_payload.timestamp == compute_timestamp_at_slot(state, block.slot)`.
136136
- If `execution_payload` verification of block's parent by an execution node is *not* complete:

specs/deneb/p2p-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ The *type* of the payload of this topic changes to the (modified) `SignedBeaconB
147147
New validation:
148148

149149
- _[REJECT]_ The length of KZG commitments is less than or equal to the limitation defined in Consensus Layer --
150-
i.e. validate that `len(body.signed_beacon_block.message.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK`
150+
i.e. validate that `len(signed_beacon_block.message.body.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK`
151151

152152
###### `beacon_aggregate_and_proof`
153153

specs/electra/p2p-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The derivation of the `message-id` remains stable.
6767
*Updated validation*
6868

6969
- _[REJECT]_ The length of KZG commitments is less than or equal to the limitation defined in Consensus Layer --
70-
i.e. validate that `len(body.signed_beacon_block.message.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK_ELECTRA`
70+
i.e. validate that `len(signed_beacon_block.message.body.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK_ELECTRA`
7171

7272
###### `beacon_aggregate_and_proof`
7373

specs/fulu/p2p-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Some gossip meshes are upgraded in the Fulu fork to support upgraded types.
174174
*Updated validation*
175175

176176
- _[REJECT]_ The length of KZG commitments is less than or equal to the limitation defined in Consensus Layer --
177-
i.e. validate that `len(body.signed_beacon_block.message.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK_FULU`
177+
i.e. validate that `len(signed_beacon_block.message.body.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK_FULU`
178178

179179
##### Blob subnets
180180

0 commit comments

Comments
 (0)