Skip to content

Commit

Permalink
small typo fixes (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorondan authored and potuz committed Jul 8, 2024
1 parent b7b1de9 commit 51e47ff
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions specs/_features/eipxxxx/builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ This is an accompanying document which describes the expected actions of a "buil
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

- [Introduction](#introduction)
- [Builders attributions](#builders-attributions)
- [Constructing the payload bid](#constructing-the-payload-bid)
- [Constructing the `BlobSidecar`s](#constructing-the-blobsidecars)
- [Constructing the execution payload envelope](#constructing-the-execution-payload-envelope)
- [Honest payload withheld messages](#honest-payload-withheld-messages)
- [ePBS -- Honest Builder](#epbs----honest-builder)
- [Introduction](#introduction)
- [Builders attributions](#builders-attributions)
- [Constructing the payload bid](#constructing-the-payload-bid)
- [Constructing the `BlobSidecar`s](#constructing-the-blobsidecars)
- [Constructing the execution payload envelope](#constructing-the-execution-payload-envelope)
- [Honest payload withheld messages](#honest-payload-withheld-messages)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

Expand Down Expand Up @@ -46,7 +47,7 @@ def get_execution_payload_header_signature(state: BeaconState, header: Execution
return bls.Sign(privkey, signing_root)
```

The builder assembles then `signed_exceution_payload_header = SignedExecutionPayloadHeader(message=header, signature=signature)` and broadcasts it on the `execution_payload_header` global gossip topic.
The builder assembles then `signed_execution_payload_header = SignedExecutionPayloadHeader(message=header, signature=signature)` and broadcasts it on the `execution_payload_header` global gossip topic.

### Constructing the `BlobSidecar`s

Expand Down Expand Up @@ -105,7 +106,7 @@ def get_execution_payload_envelope_signature(state: BeaconState, envelope: Execu
signing_root = compute_signing_root(envelope, domain)
return bls.Sign(privkey, signing_root)
```
The builder assembles then `signed_exceution_payload_envelope = SignedExecutionPayloadEnvelope(message=envelope, signature=signature)` and broadcasts it on the `execution_payload` global gossip topic.
The builder assembles then `signed_execution_payload_envelope = SignedExecutionPayloadEnvelope(message=envelope, signature=signature)` and broadcasts it on the `execution_payload` global gossip topic.

### Honest payload withheld messages

Expand Down

0 comments on commit 51e47ff

Please sign in to comment.