File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -860,6 +860,16 @@ def default_input_args(input_args):
860
860
participants = []
861
861
862
862
participants_matrix = []
863
+
864
+ if (
865
+ "network_params" in input_args
866
+ and "network" in input_args ["network_params" ]
867
+ and input_args ["network_params" ]["network" ] in constants .PUBLIC_NETWORKS
868
+ ):
869
+ checkpoint_sync_enabled = True
870
+ else :
871
+ checkpoint_sync_enabled = False
872
+
863
873
return {
864
874
"participants" : participants ,
865
875
"participants_matrix" : participants_matrix ,
@@ -878,7 +888,7 @@ def default_input_args(input_args):
878
888
"global_node_selectors" : {},
879
889
"use_remote_signer" : False ,
880
890
"keymanager_enabled" : False ,
881
- "checkpoint_sync_enabled" : False ,
891
+ "checkpoint_sync_enabled" : checkpoint_sync_enabled ,
882
892
"checkpoint_sync_url" : "" ,
883
893
"ethereum_genesis_generator_params" : get_default_ethereum_genesis_generator_params (),
884
894
"port_publisher" : {
You can’t perform that action at this time.
0 commit comments