File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
140140class 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
You can’t perform that action at this time.
0 commit comments