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

EIP4844: Use MAX_REQUEST_BLOB_SIDECARS #3278

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions specs/deneb/p2p-interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,15 @@ Request Content:

```
(
List[BlobIdentifier, MAX_REQUEST_BLOBS_SIDECARS]
List[BlobIdentifier, MAX_REQUEST_BLOB_SIDECARS]
)
```

Response Content:

```
(
List[BlobSidecar, MAX_REQUEST_BLOBS_SIDECARS]
List[BlobSidecar, MAX_REQUEST_BLOB_SIDECARS]
)
```

Expand All @@ -202,7 +202,7 @@ It may be less in the case that the responding peer is missing blocks or sidecar
The response is unsigned, i.e. `BlobSidecar`, as the signature of the beacon block proposer
may not be available beyond the initial distribution via gossip.

No more than `MAX_REQUEST_BLOBS_SIDECARS` may be requested at a time.
No more than `MAX_REQUEST_BLOB_SIDECARS` may be requested at a time.

`BlobSidecarsByRoot` is primarily used to recover recent blobs (e.g. when receiving a block with a transaction whose corresponding blob is missing).

Expand Down