Skip to content

Commit 35f8191

Browse files
authored
eip7805: fix cutoff config typo (#4490)
This PR fixes cutoff config typo.
1 parent 3ea53df commit 35f8191

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

configs/mainnet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ PROPOSER_SCORE_BOOST_EIP7732: 20
185185
ATTESTATION_DEADLINE: 4
186186
INCLUSION_LIST_SUBMISSION_DEADLINE: 8
187187
VIEW_FREEZE_DEADLINE: 9
188-
PROPOSER_INCLUSION_LIST_CUT_OFF: 11
188+
PROPOSER_INCLUSION_LIST_CUTOFF: 11
189189
# 2**4 (= 16)
190190
MAX_REQUEST_INCLUSION_LIST: 16
191191
# 2**13 (= 8192)

configs/minimal.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ PROPOSER_SCORE_BOOST_EIP7732: 20
182182
ATTESTATION_DEADLINE: 2
183183
INCLUSION_LIST_SUBMISSION_DEADLINE: 2
184184
VIEW_FREEZE_DEADLINE: 3
185-
PROPOSER_INCLUSION_LIST_CUT_OFF: 5
185+
PROPOSER_INCLUSION_LIST_CUTOFF: 5
186186
# 2**4 (= 16)
187187
MAX_REQUEST_INCLUSION_LIST: 16
188188
# 2**13 (= 8192)

specs/_features/eip7805/validator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ continuing and use them as a reference throughout.
5353
| Name | Value | Unit | Duration |
5454
| ------------------------------------ | --------------------------- | :-----: | :--------: |
5555
| `INCLUSION_LIST_SUBMISSION_DEADLINE` | `SECONDS_PER_SLOT * 2 // 3` | seconds | 8 seconds |
56-
| `PROPOSER_INCLUSION_LIST_CUT_OFF` | `SECONDS_PER_SLOT - 1` | seconds | 11 seconds |
56+
| `PROPOSER_INCLUSION_LIST_CUTOFF` | `SECONDS_PER_SLOT - 1` | seconds | 11 seconds |
5757

5858
## Helpers
5959

@@ -150,7 +150,7 @@ processed through any empty slots up to the assigned slot using
150150

151151
*Note*: A proposer should produce an execution payload that satisfies the
152152
inclusion list constraints with respect to the inclusion lists gathered up to
153-
`PROPOSER_INCLUSION_LIST_CUT_OFF` into the slot.
153+
`PROPOSER_INCLUSION_LIST_CUTOFF` into the slot.
154154

155155
```python
156156
def prepare_execution_payload(

0 commit comments

Comments
 (0)