Commit ff21a822 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

Merge pull request #27 from kurtosis-tech/gyani/bug-fix

fix a bug in eth2-module
parents 34ce039e 010fe9e8
This diff is collapsed.
......@@ -3,6 +3,9 @@
### Changes
- Repalced 'module' with 'package' where relevant
### Fixes
- Fixed a bug in `run` of `main.star` where we'd refer to `module_io` instead of `package_io`
# 0.0.2
### Features
......
......@@ -20,7 +20,7 @@ FIRST_NODE_FINALIZATION_FACT = "cl-boot-finalization-fact"
HTTP_PORT_ID_FOR_FACT = "http"
def run(input_args):
input_args_with_right_defaults = module_io.ModuleInput(parse_input.parse_input(input_args))
input_args_with_right_defaults = package_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