Skip to content

Commit a5c955f

Browse files
committed
feedback from ACDC
1 parent 567e62f commit a5c955f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

specs/_features/verge/beacon-chain.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class ExecutionPayloadHeader(Container):
102102
block_hash: Hash32 # Hash of execution block
103103
transactions_root: Root
104104
# Extra payload fields
105-
execution_witness: ExecutionWitness
105+
execution_witness_root: Root # [New in Verge]
106106
```
107107

108108
### New containers
@@ -138,8 +138,8 @@ StateDiff = List[StemStateDiff, MAX_STEMS]
138138

139139
```python
140140
class IpaProof(Container):
141-
C_L = Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
142-
C_R = Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
141+
c_l: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
142+
c_r: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
143143
final_evaluation = BanderwagonFieldElement
144144
```
145145

@@ -150,7 +150,7 @@ class VerkleProof(Container):
150150
other_stems: List[Bytes31, MAX_STEMS]
151151
depth_extension_present: List[uint8, MAX_STEMS]
152152
commitments_by_path: List[BanderwagonGroupElement, MAX_STEMS * MAX_COMMITMENTS_PER_STEM]
153-
D: BanderwagonGroupElement
153+
d: BanderwagonGroupElement
154154
ipa_proof: IpaProof
155155
```
156156

0 commit comments

Comments
 (0)