@@ -269,21 +269,21 @@ pub fn get_config<E: EthSpec>(
269269 client_config. http_metrics . allocator_metrics_enabled = false ;
270270 }
271271
272- // Auto-enable in-process dummy execution layer if --zkevm-validation is set without
273- // --zkvm-generation -proof-types and no explicit --execution-endpoint is provided.
274- let use_dummy_el = cli_args. get_flag ( "zkevm-validation " )
272+ // Auto-enable in-process dummy execution layer if --execution-proofs is set without
273+ // --execution -proof-types and no explicit --execution-endpoint is provided.
274+ let use_dummy_el = cli_args. get_flag ( "execution-proofs " )
275275 && cli_args
276- . get_one :: < String > ( "zkvm-generation -proof-types" )
276+ . get_one :: < String > ( "execution -proof-types" )
277277 . is_none ( )
278278 && cli_args. get_one :: < String > ( "execution-endpoint" ) . is_none ( ) ;
279279
280280 client_config. use_dummy_el = use_dummy_el;
281281
282- // Configure execution layer: either use provided endpoint or dummy EL (auto-enabled with --zkevm-validation )
282+ // Configure execution layer: either use provided endpoint or dummy EL (auto-enabled with --execution-proofs )
283283 if !use_dummy_el {
284284 let endpoints: Option < String > = clap_utils:: parse_optional ( cli_args, "execution-endpoint" ) ?;
285285 let endpoints = endpoints
286- . ok_or ( "Error! Either --execution-endpoint or --zkevm-validation must be provided" ) ?;
286+ . ok_or ( "Error! Either --execution-endpoint or --execution-proofs must be provided" ) ?;
287287
288288 let mut el_config = execution_layer:: Config :: default ( ) ;
289289
@@ -354,7 +354,7 @@ pub fn get_config<E: EthSpec>(
354354 client_config. execution_layer = Some ( el_config) ;
355355 } else {
356356 // Create an execution_layer config pointing to localhost
357- info ! ( "Using in-process dummy execution layer (--zkevm-validation )" ) ;
357+ info ! ( "Using in-process dummy execution layer (--execution-proofs )" ) ;
358358
359359 let mut el_config = execution_layer:: Config :: default ( ) ;
360360
@@ -373,18 +373,18 @@ pub fn get_config<E: EthSpec>(
373373 client_config. execution_layer = Some ( el_config) ;
374374 }
375375
376- // Parse ZK-VM execution layer config if provided
377- if cli_args. get_flag ( "zkevm-validation " ) {
376+ // Parse execution proofs config if provided
377+ if cli_args. get_flag ( "execution-proofs " ) {
378378 let generation_proof_types = if let Some ( gen_types_str) =
379- clap_utils:: parse_optional :: < String > ( cli_args, "zkvm-generation -proof-types" ) ?
379+ clap_utils:: parse_optional :: < String > ( cli_args, "execution -proof-types" ) ?
380380 {
381381 gen_types_str
382382 . split ( ',' )
383383 . map ( |s| s. trim ( ) . parse :: < u8 > ( ) )
384384 . collect :: < Result < Vec < u8 > , _ > > ( )
385385 . map_err ( |e| {
386386 format ! (
387- "Invalid proof type ID in --zkvm-generation -proof-types: {}" ,
387+ "Invalid proof type ID in --execution -proof-types: {}" ,
388388 e
389389 )
390390 } ) ?
@@ -395,7 +395,7 @@ pub fn get_config<E: EthSpec>(
395395 } else {
396396 // No generation proof types provided - running in verification-only mode
397397 if client_config. use_dummy_el {
398- info ! ( "--zkevm-validation : no EL needed for proof verification" ) ;
398+ info ! ( "--execution-proofs : no EL needed for proof verification" ) ;
399399 }
400400 HashSet :: new ( )
401401 } ;
0 commit comments