@@ -11,7 +11,6 @@ import (
1111)
1212
1313const (
14- EuclidFork = "euclid"
1514 EuclidV2Fork = "euclidV2"
1615
1716 EuclidV2ForkNameForProver = "euclidv2"
@@ -46,7 +45,7 @@ const (
4645
4746// ChunkTaskDetail is a type containing ChunkTask detail for chunk task.
4847type ChunkTaskDetail struct {
49- // use one of the string of EuclidFork / EuclidV2Fork
48+ // use one of the string of "euclidv1" / "euclidv2"
5049 ForkName string `json:"fork_name"`
5150 BlockHashes []common.Hash `json:"block_hashes"`
5251 PrevMsgQueueHash common.Hash `json:"prev_msg_queue_hash"`
@@ -97,7 +96,7 @@ func (e *Byte48) UnmarshalJSON(input []byte) error {
9796
9897// BatchTaskDetail is a type containing BatchTask detail.
9998type BatchTaskDetail struct {
100- // use one of the string of EuclidFork / EuclidV2Fork
99+ // use one of the string of "euclidv1" / "euclidv2"
101100 ForkName string `json:"fork_name"`
102101 ChunkInfos []* ChunkInfo `json:"chunk_infos"`
103102 ChunkProofs []* OpenVMChunkProof `json:"chunk_proofs"`
@@ -110,7 +109,7 @@ type BatchTaskDetail struct {
110109
111110// BundleTaskDetail consists of all the information required to describe the task to generate a proof for a bundle of batches.
112111type BundleTaskDetail struct {
113- // use one of the string of EuclidFork / EuclidV2Fork
112+ // use one of the string of "euclidv1" / "euclidv2"
114113 ForkName string `json:"fork_name"`
115114 BatchProofs []* OpenVMBatchProof `json:"batch_proofs"`
116115 BundleInfo * OpenVMBundleInfo `json:"bundle_info,omitempty"`
0 commit comments