Skip to content

Commit

Permalink
Update specs/deneb/builder.md
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Hager <[email protected]>
  • Loading branch information
ralexstokes and metachris authored Mar 8, 2024
1 parent 0fbeb31 commit 1c8a27d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions specs/deneb/builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ Consider the following validation logic following definitions in the `consensus-

```python
def verify_bid_value(execution_payload: ExecutionPayload, fee_recipient: ExecutionAddress, bid_value: uint256, balance_difference: uint256):
target_amounts = [w.amount for w in execution_payload.withdrawals if w.address == fee_recipient]
excluded_amount = sum(target_amounts)
excluded_amount = sum([w.amount for w in execution_payload.withdrawals if w.address == fee_recipient])
proposer_payment = balance_difference - excluded_amount
assert proposer_payment == bid_value
```
Expand Down

0 comments on commit 1c8a27d

Please sign in to comment.