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
96cb654c
Commit
96cb654c
authored
Nov 08, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove variable extraction
parent
3fa46b96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
main.star
main.star
+3
-5
No files found.
main.star
View file @
96cb654c
...
@@ -5,11 +5,9 @@ module_io = import_types("github.com/kurtosis-tech/eth2-module/types.proto")
...
@@ -5,11 +5,9 @@ module_io = import_types("github.com/kurtosis-tech/eth2-module/types.proto")
def main(input_args):
def main(input_args):
input_args_with_right_defaults = module_io.ModuleInput(parse_input(input_args))
input_args_with_right_defaults = module_io.ModuleInput(parse_input(input_args))
participants = input_args_with_right_defaults.participants
num_participants = len(input_args_with_right_defaults.participants)
num_participants = len(participants)
print("Launching participant network with {0} participants and the following network params {1}".format(num_participants, input_args_with_right_defaults.network_params))
network_params = input_args_with_right_defaults.network_params
launch_participant_network(num_participants, input_args_with_right_defaults.network_params)
print("Launching participant network with {0} participants and the following network params {1}".format(num_participants, network_params))
launch_participant_network(num_participants, network_params)
#TODO replace with actual values
#TODO replace with actual values
grafana_info = module_io.GrafanaInfo({
grafana_info = module_io.GrafanaInfo({
"dashboard_path": "dummy_path",
"dashboard_path": "dummy_path",
...
...
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