Commit 4cbebcbc authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

Merge branch 'master' into gyani/package-module

parents 058cc9de 6f89561f
......@@ -31,7 +31,7 @@ jobs:
- run: kurtosis engine restart
- run: kurtosis exec ${PWD}
- run: kurtosis run ${PWD}
workflows:
......
......@@ -16,6 +16,9 @@
- Adjusted to the new render templates config
- Moved away from passing json string to struct/dict for render templates
### Changes
- Move from `main` to `run` in `main.star`
# 0.0.1
### Features
......
......@@ -19,8 +19,8 @@ GRAFANA_DASHBOARD_PATH_URL = "/d/QdTOwy-nz/eth2-merge-kurtosis-module-dashboard?
FIRST_NODE_FINALIZATION_FACT = "cl-boot-finalization-fact"
HTTP_PORT_ID_FOR_FACT = "http"
def main(input_args):
input_args_with_right_defaults = package_io.ModuleInput(parse_input.parse_input(input_args))
def run(input_args):
input_args_with_right_defaults = module_io.ModuleInput(parse_input.parse_input(input_args))
num_participants = len(input_args_with_right_defaults.participants)
network_params = input_args_with_right_defaults.network_params
......
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