Commit 7bea0f36 authored by Gyanendra Mishra's avatar Gyanendra Mishra

added a bunch of newlines

parent d900d4e7
module: module:
name: "github.com/kurtosis-tech/eth2-module" name: "github.com/kurtosis-tech/eth2-module"
\ No newline at end of file
load("github.com/kurtosis-tech/eth2-module/src/participant_network/prelaunch_data_generator/genesis_constants/genesis_constants.star", "PRE_FUNDED_ACCOUNTS") load("github.com/kurtosis-tech/eth2-module/src/participant_network/prelaunch_data_generator/genkstants.star", "PRE_FUNDED_ACCOUNTS")
load("github.com/kurtosis-tech/eth2-module/src/participant_network/participant_network.star", "launch_participant_network") load("github.com/kurtosis-tech/eth2-module/src/participant_network/participant_network.star", "launch_participant_network")
...@@ -15,4 +15,4 @@ def new_network_params(): ...@@ -15,4 +15,4 @@ def new_network_params():
network_id = "3151908", network_id = "3151908",
deposit_contract_address = "0x4242424242424242424242424242424242424242", deposit_contract_address = "0x4242424242424242424242424242424242424242",
seconds_per_slot = 12, seconds_per_slot = 12,
) )
\ No newline at end of file
...@@ -13,4 +13,4 @@ root_dirpath="$(dirname "${script_dirpath}")" ...@@ -13,4 +13,4 @@ root_dirpath="$(dirname "${script_dirpath}")"
if ! "kurtosis" "startosis" "exec" "${root_dirpath}"; then if ! "kurtosis" "startosis" "exec" "${root_dirpath}"; then
echo "Error: running the startosis script" echo "Error: running the startosis script"
fi fi
\ No newline at end of file
...@@ -10,6 +10,3 @@ def new_cl_genesis_data( ...@@ -10,6 +10,3 @@ def new_cl_genesis_data(
config_yml_rel_filepath = config_yml_rel_filepath, config_yml_rel_filepath = config_yml_rel_filepath,
genesis_ssz_rel_filepath = genesis_ssz_rel_filepath, genesis_ssz_rel_filepath = genesis_ssz_rel_filepath,
) )
\ No newline at end of file
...@@ -43,7 +43,6 @@ def generate_cl_validator_keystores( ...@@ -43,7 +43,6 @@ def generate_cl_validator_keystores(
all_output_dirpaths = [] all_output_dirpaths = []
all_sub_command_strs = [] all_sub_command_strs = []
# TODO Parallelize this to increase perf, which will require Docker exec operations not holding the Kurtosis mutex!
start_index = 0 start_index = 0
stop_index = num_validators_per_node stop_index = num_validators_per_node
...@@ -110,4 +109,4 @@ def generate_cl_validator_keystores( ...@@ -110,4 +109,4 @@ def generate_cl_validator_keystores(
keystore_files, keystore_files,
) )
return result return result
\ No newline at end of file
...@@ -10,4 +10,4 @@ def new_generate_keystores_result(prysm_password_artifact_uuid, prysm_password_r ...@@ -10,4 +10,4 @@ def new_generate_keystores_result(prysm_password_artifact_uuid, prysm_password_r
# Contains keystores-per-client-type for each node in the network # Contains keystores-per-client-type for each node in the network
PerNodeKeystores = per_node_keystores PerNodeKeystores = per_node_keystores
) )
\ No newline at end of file
...@@ -13,4 +13,4 @@ def new_el_genesis_data( ...@@ -13,4 +13,4 @@ def new_el_genesis_data(
erigon_genesis_json_relative_filepath = erigon_genesis_json_relative_filepath, erigon_genesis_json_relative_filepath = erigon_genesis_json_relative_filepath,
nethermind_genesis_json_relative_filepath = nethermind_genesis_json_relative_filepath, nethermind_genesis_json_relative_filepath = nethermind_genesis_json_relative_filepath,
besu_genesis_json_relative_filepath = besu_genesis_json_relative_filepath, besu_genesis_json_relative_filepath = besu_genesis_json_relative_filepath,
) )
\ No newline at end of file
...@@ -128,4 +128,4 @@ def genesis_generation_config_template_data(network_id, deposit_contract_address ...@@ -128,4 +128,4 @@ def genesis_generation_config_template_data(network_id, deposit_contract_address
"NetworkId": network_id, "NetworkId": network_id,
"DepositContractAddress": deposit_contract_address, "DepositContractAddress": deposit_contract_address,
"UnixTimestamp": unix_timestamp, "UnixTimestamp": unix_timestamp,
} }
\ No newline at end of file
...@@ -33,4 +33,4 @@ def get_service_config( ...@@ -33,4 +33,4 @@ def get_service_config(
container_image_name = IMAGE, container_image_name = IMAGE,
entry_point_args = ENTRYPOINT_ARGS, entry_point_args = ENTRYPOINT_ARGS,
files_artifact_mount_dirpaths = files_artifact_mountpoints, files_artifact_mount_dirpaths = files_artifact_mountpoints,
) )
\ No newline at end of file
...@@ -7,4 +7,4 @@ def path_join(*args): ...@@ -7,4 +7,4 @@ def path_join(*args):
def path_base(path): def path_base(path):
split_path = path.split("/") split_path = path.split("/")
return split_path[-1] return split_path[-1]
\ No newline at end of file
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