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
3f2ea88b
Unverified
Commit
3f2ea88b
authored
Oct 05, 2023
by
Gyanendra Mishra
Committed by
GitHub
Oct 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: return participants, timestamp of genesis and validator root for consumers (#262)
parent
9dfc4de1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
main.star
main.star
+8
-3
No files found.
main.star
View file @
3f2ea88b
...
...
@@ -71,7 +71,7 @@ def run(plan, args={}):
)
(
all_participants,
c
l_genesis_timestamp,
fina
l_genesis_timestamp,
genesis_validators_root,
) = participant_network.launch_participant_network(
plan,
...
...
@@ -245,7 +245,7 @@ def run(plan, args={}):
plan,
cl_forkmon_config_template,
all_cl_client_contexts,
c
l_genesis_timestamp,
fina
l_genesis_timestamp,
network_params.seconds_per_slot,
network_params.slots_per_epoch,
)
...
...
@@ -352,6 +352,11 @@ def run(plan, args={}):
user=GRAFANA_USER,
password=GRAFANA_PASSWORD,
)
output = struct(grafana_info=grafana_info)
output = struct(
grafana_info=grafana_info,
all_participants=all_participants,
final_genesis_timestamp=final_genesis_timestamp,
genesis_validators_root=genesis_validators_root,
)
return output
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