File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -112,10 +112,8 @@ class ExecutionPayloadHeader(Container):
112112``` python
113113class SuffixStateDiff (Container ):
114114 suffix: Byte
115-
116115 # Null means not currently present
117116 current_value: Optional[Bytes32]
118-
119117 # Null means value not updated
120118 new_value: Optional[Bytes32]
121119```
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ def upgrade_to_verge(pre: capella.BeaconState) -> BeaconState:
136136 next_withdrawal_validator_index = pre.next_withdrawal_validator_index,
137137 # Deep history valid from Capella onwards
138138 # FIXME most likely wrong
139- historical_summaries = List[HistoricalSummary, HISTORICAL_ROOTS_LIMIT ]([]), # [New in Capella]
139+ historical_summaries = List[HistoricalSummary, HISTORICAL_ROOTS_LIMIT ]([]),
140140 )
141141
142142 return post
You can’t perform that action at this time.
0 commit comments