Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
ff21a822
Unverified
Commit
ff21a822
authored
Nov 25, 2022
by
Gyanendra Mishra
Committed by
GitHub
Nov 25, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #27 from kurtosis-tech/gyani/bug-fix
fix a bug in eth2-module
parents
34ce039e
010fe9e8
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
33 deletions
+35
-33
architecture.md
docs/architecture.md
+31
-32
changelog.md
docs/changelog.md
+3
-0
main.star
main.star
+1
-1
No files found.
docs/architecture.md
View file @
ff21a822
This diff is collapsed.
Click to expand it.
docs/changelog.md
View file @
ff21a822
...
@@ -3,6 +3,9 @@
...
@@ -3,6 +3,9 @@
### Changes
### Changes
-
Repalced 'module' with 'package' where relevant
-
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
# 0.0.2
### Features
### Features
...
...
main.star
View file @
ff21a822
...
@@ -20,7 +20,7 @@ FIRST_NODE_FINALIZATION_FACT = "cl-boot-finalization-fact"
...
@@ -20,7 +20,7 @@ FIRST_NODE_FINALIZATION_FACT = "cl-boot-finalization-fact"
HTTP_PORT_ID_FOR_FACT = "http"
HTTP_PORT_ID_FOR_FACT = "http"
def run(input_args):
def run(input_args):
input_args_with_right_defaults =
modul
e_io.ModuleInput(parse_input.parse_input(input_args))
input_args_with_right_defaults =
packag
e_io.ModuleInput(parse_input.parse_input(input_args))
num_participants = len(input_args_with_right_defaults.participants)
num_participants = len(input_args_with_right_defaults.participants)
network_params = input_args_with_right_defaults.network_params
network_params = input_args_with_right_defaults.network_params
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment