Commit 3bf66ded authored by Gyanendra Mishra's avatar Gyanendra Mishra

harmonize towards having ): on the same line as last variable

parent fa881b54
......@@ -31,8 +31,8 @@ TEKU_SECRETS_DIRNAME = "teku-secrets"
def generate_cl_validator_keystores(
mnemonic,
num_nodes,
num_validators_per_node,
):
num_validators_per_node):
service_id = launch_prelaunch_data_generator(
{},
)
......
......@@ -4,8 +4,7 @@ def new_el_genesis_data(
geth_genesis_json_relative_filepath,
erigon_genesis_json_relative_filepath,
nethermind_genesis_json_relative_filepath,
besu_genesis_json_relative_filepath,
):
besu_genesis_json_relative_filepath):
return struct(
files_artifact_uuid = files_artifact_uuid,
jwt_secret_relative_filepath = jwt_secret_relative_filepath,
......
......@@ -39,7 +39,7 @@ def generate_el_genesis_data(
genesis_config_file_template_and_data = new_template_and_data(genesis_generation_config_template, template_data)
template_and_data_by_rel_dest_filepath ={}
template_and_data_by_rel_dest_filepath = {}
template_and_data_by_rel_dest_filepath[GENESIS_CONFIG_FILENAME] = genesis_config_file_template_and_data
genesis_generation_config_artifact_uuid = render_templates(template_and_data_by_rel_dest_filepath)
......
def new_prefunded_account(address, private_key) :
def new_prefunded_account(address, private_key):
return struct(address = address, private_key = private_key)
# This information was generated by:
......
......@@ -9,9 +9,7 @@ ENTRYPOINT_ARGS = [
]
# Launches a prelaunch data generator IMAGE, for use in various of the genesis generation
def launch_prelaunch_data_generator(
files_artifact_mountpoints,
):
def launch_prelaunch_data_generator(files_artifact_mountpoints):
service_config = get_service_config(files_artifact_mountpoints)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment