Skip to content

Commit e3eb09b

Browse files
committed
Rename maximum_blobs_per_block to max_blobs_per_block
1 parent 4da2cea commit e3eb09b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

specs/electra/fork-choice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ class PayloadAttributes(object):
3434
withdrawals: Sequence[Withdrawal]
3535
parent_beacon_block_root: Root
3636
target_blobs_per_block: uint64 # [New in Electra:EIP7742]
37-
maximum_blobs_per_block: uint64 # [New in Electra:EIP7742]
37+
max_blobs_per_block: uint64 # [New in Electra:EIP7742]
3838
```

specs/electra/validator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def prepare_execution_payload(state: BeaconState,
177177
withdrawals=withdrawals,
178178
parent_beacon_block_root=hash_tree_root(state.latest_block_header),
179179
target_blobs_per_block=MAX_BLOBS_PER_BLOCK // 2, # [New in Electra:EIP7742]
180-
maximum_blobs_per_block=MAX_BLOBS_PER_BLOCK, # [New in Electra:EIP7742]
180+
max_blobs_per_block=MAX_BLOBS_PER_BLOCK, # [New in Electra:EIP7742]
181181
)
182182
return execution_engine.notify_forkchoice_updated(
183183
head_block_hash=parent_hash,

0 commit comments

Comments
 (0)