Update specs/eip4844/beacon-chain.md
Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
This commit is contained in:
parent
242e1b73bb
commit
f6f2474c87
|
@ -274,6 +274,7 @@ def process_execution_payload(state: BeaconState, payload: ExecutionPayload, exe
|
||||||
block_hash=payload.block_hash,
|
block_hash=payload.block_hash,
|
||||||
transactions_root=hash_tree_root(payload.transactions),
|
transactions_root=hash_tree_root(payload.transactions),
|
||||||
withdrawals_root=hash_tree_root(payload.withdrawals) if ENABLE_WITHDRAWALS else Bytes32(), # [New in EIP-4844]
|
withdrawals_root=hash_tree_root(payload.withdrawals) if ENABLE_WITHDRAWALS else Bytes32(), # [New in EIP-4844]
|
||||||
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Modified `process_operations`
|
#### Modified `process_operations`
|
||||||
|
|
Loading…
Reference in New Issue