|
7 | 7 |
|
8 | 8 | "github.com/scroll-tech/go-ethereum/common" |
9 | 9 | "github.com/scroll-tech/go-ethereum/common/hexutil" |
10 | | - "github.com/scroll-tech/go-ethereum/log" |
11 | 10 | ) |
12 | 11 |
|
13 | 12 | const ( |
@@ -108,7 +107,6 @@ type ChunkProof interface { |
108 | 107 |
|
109 | 108 | // NewChunkProof creates a new ChunkProof instance. |
110 | 109 | func NewChunkProof(hardForkName string) ChunkProof { |
111 | | - log.Info("NewChunkProof", "hardForkName", hardForkName, "euclidForkName", EuclidFork, "euclidV2ForkName", EuclidV2Fork) |
112 | 110 | switch hardForkName { |
113 | 111 | case EuclidFork, EuclidV2Fork: |
114 | 112 | return &OpenVMChunkProof{} |
@@ -143,7 +141,6 @@ type BatchProof interface { |
143 | 141 |
|
144 | 142 | // NewBatchProof creates a new BatchProof instance. |
145 | 143 | func NewBatchProof(hardForkName string) BatchProof { |
146 | | - log.Info("NewBatchProof", "hardForkName", hardForkName, "euclidForkName", EuclidFork, "euclidV2ForkName", EuclidV2Fork) |
147 | 144 | switch hardForkName { |
148 | 145 | case EuclidFork, EuclidV2Fork: |
149 | 146 | return &OpenVMBatchProof{} |
@@ -201,7 +198,6 @@ type BundleProof interface { |
201 | 198 |
|
202 | 199 | // NewBundleProof creates a new BundleProof instance. |
203 | 200 | func NewBundleProof(hardForkName string) BundleProof { |
204 | | - log.Info("NewBundleProof", "hardForkName", hardForkName, "euclidForkName", EuclidFork, "euclidV2ForkName", EuclidV2Fork) |
205 | 201 | switch hardForkName { |
206 | 202 | case EuclidFork, EuclidV2Fork: |
207 | 203 | return &OpenVMBundleProof{} |
|
0 commit comments