Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronously check all transactions to have non-zero length #3885

Merged
merged 7 commits into from
Nov 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update specs/deneb/beacon-chain.md
Co-authored-by: Justin Traglia <95511699+jtraglia@users.noreply.github.com>
  • Loading branch information
etan-status and jtraglia authored Oct 21, 2024
commit a6095bf498243dfd2619a996c5c9f9fcbf79cfdc
3 changes: 1 addition & 2 deletions specs/deneb/beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,8 @@ def verify_and_notify_new_payload(self: ExecutionEngine,
"""
Return ``True`` if and only if ``new_payload_request`` is valid with respect to ``self.execution_state``.
"""
# [Modified in Deneb:EIP4788]
execution_payload = new_payload_request.execution_payload
parent_beacon_block_root = new_payload_request.parent_beacon_block_root
parent_beacon_block_root = new_payload_request.parent_beacon_block_root # [Modified in Deneb:EIP4788]
jtraglia marked this conversation as resolved.
Show resolved Hide resolved

if b'' in execution_payload.transactions:
return False
Expand Down