You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blob transactions with empty `blob_versioned_hashes` are also considered invalid during execution block verification, and must not be included in a valid block.
185
+
Blob transactions with empty `versioned_hashes` are also considered invalid during execution block verification, and must not be included in a valid block.
186
186
187
187
### Header extension
188
188
@@ -247,8 +247,8 @@ The `ethereum/consensus-specs` repository defines the following beacon-node chan
247
247
### Opcode to get versioned hashes
248
248
249
249
We add an opcode `DATAHASH` (with byte value `HASH_OPCODE_BYTE`) which reads `index` from the top of the stack
250
-
as big-endian `uint256`, and replaces it on the stack with `tx.message.blob_versioned_hashes[index]`
251
-
if `index < len(tx.message.blob_versioned_hashes)`, and otherwise with a zeroed `bytes32` value.
250
+
as big-endian `uint256`, and replaces it on the stack with `tx.message.versioned_hashes[index]`
251
+
if `index < len(tx.message.versioned_hashes)`, and otherwise with a zeroed `bytes32` value.
0 commit comments