Commit 2c3b6a2f authored by vuittont60's avatar vuittont60 Committed by GitHub

chore: fix typos (#351)

Co-authored-by: default avatarGyanendra Mishra <anomaly.the@gmail.com>
parent 57f82c04
......@@ -367,7 +367,7 @@ global_client_log_level: info
<details>
<summary>A 3-node Ethereum network with "mock" MEV mode.</summary>
Useful for testing mev-boost and the client implimentations without adding the complexity of the relay. This can be enabled by a single config command and would deploy the [mock-builder](https://github.com/marioevz/mock-builder), instead of the relay infrastructure.
Useful for testing mev-boost and the client implementations without adding the complexity of the relay. This can be enabled by a single config command and would deploy the [mock-builder](https://github.com/marioevz/mock-builder), instead of the relay infrastructure.
```yaml
participants:
......@@ -560,5 +560,5 @@ When you're happy with your changes:
[docker-installation]: https://docs.docker.com/get-docker/
[kurtosis-cli-installation]: https://docs.kurtosis.com/install
[kurtosis-repo]: https://github.com/kurtosis-tech/kurtosis
[enclave]: https://docs.kurtosis.com/concepts-reference/enclaves/
[package-reference]: https://docs.kurtosis.com/concepts-reference/packages
[enclave]: https://docs.kurtosis.com/advanced-concepts/enclaves/
[package-reference]: https://docs.kurtosis.com/advanced-concepts/packages
......@@ -257,7 +257,7 @@ def run(plan, args={}):
all_el_client_contexts[0],
tx_spammer_params,
)
plan.print("Succesfully launched transaction spammer")
plan.print("Successfully launched transaction spammer")
elif additional_service == "blob_spammer":
plan.print("Launching Blob spammer")
blob_spammer.launch_blob_spammer(
......@@ -269,7 +269,7 @@ def run(plan, args={}):
network_params.seconds_per_slot,
network_params.genesis_delay,
)
plan.print("Succesfully launched blob spammer")
plan.print("Successfully launched blob spammer")
elif additional_service == "goomy_blob":
plan.print("Launching Goomy the blob spammer")
goomy_blob_params = args_with_right_defaults.goomy_blob_params
......@@ -281,7 +281,7 @@ def run(plan, args={}):
network_params.seconds_per_slot,
goomy_blob_params,
)
plan.print("Succesfully launched goomy the blob spammer")
plan.print("Successfully launched goomy the blob spammer")
# We need a way to do time.sleep
# TODO add code that waits for CL genesis
elif additional_service == "el_forkmon":
......@@ -292,7 +292,7 @@ def run(plan, args={}):
el_forkmon.launch_el_forkmon(
plan, el_forkmon_config_template, all_el_client_contexts
)
plan.print("Succesfully launched execution layer forkmon")
plan.print("Successfully launched execution layer forkmon")
elif additional_service == "beacon_metrics_gazer":
plan.print("Launching beacon metrics gazer")
beacon_metrics_gazer_prometheus_metrics_job = (
......@@ -306,7 +306,7 @@ def run(plan, args={}):
prometheus_additional_metrics_jobs.append(
beacon_metrics_gazer_prometheus_metrics_job
)
plan.print("Succesfully launched beacon metrics gazer")
plan.print("Successfully launched beacon metrics gazer")
elif additional_service == "dora":
plan.print("Launching dora")
dora_config_template = read_file(static_files.DORA_CONFIG_TEMPLATE_FILEPATH)
......@@ -317,7 +317,7 @@ def run(plan, args={}):
el_cl_data_files_artifact_uuid,
network_params.electra_fork_epoch,
)
plan.print("Succesfully launched dora")
plan.print("Successfully launched dora")
elif additional_service == "full_beaconchain_explorer":
plan.print("Launching full-beaconchain-explorer")
full_beaconchain_explorer_config_template = read_file(
......@@ -329,7 +329,7 @@ def run(plan, args={}):
all_cl_client_contexts,
all_el_client_contexts,
)
plan.print("Succesfully launched full-beaconchain-explorer")
plan.print("Successfully launched full-beaconchain-explorer")
elif additional_service == "prometheus_grafana":
# Allow prometheus to be launched last so is able to collect metrics from other services
launch_prometheus_grafana = True
......@@ -362,7 +362,7 @@ def run(plan, args={}):
prometheus_private_url,
additional_dashboards=args_with_right_defaults.grafana_additional_dashboards,
)
plan.print("Succesfully launched grafana")
plan.print("Successfully launched grafana")
if args_with_right_defaults.wait_for_finalization:
plan.print("Waiting for the first finalized epoch")
......
......@@ -209,7 +209,7 @@ def launch_participant_network(
all_el_client_contexts.append(el_client_context)
plan.print("Succesfully added {0} EL participants".format(num_participants))
plan.print("Successfully added {0} EL participants".format(num_participants))
plan.print("Launching CL network")
......@@ -286,7 +286,7 @@ def launch_participant_network(
el_client_context,
)
plan.print(
"Succesfully added {0} snooper participants".format(
"Successfully added {0} snooper participants".format(
snooper_engine_context
)
)
......@@ -362,14 +362,14 @@ def launch_participant_network(
cl_client_context,
)
plan.print(
"Succesfully added {0} ethereum metrics exporter participants".format(
"Successfully added {0} ethereum metrics exporter participants".format(
ethereum_metrics_exporter_context
)
)
all_ethereum_metrics_exporter_contexts.append(ethereum_metrics_exporter_context)
plan.print("Succesfully added {0} CL participants".format(num_participants))
plan.print("Successfully added {0} CL participants".format(num_participants))
all_participants = []
......
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