Commit 3f2ea88b authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

feat: return participants, timestamp of genesis and validator root for consumers (#262)

parent 9dfc4de1
......@@ -71,7 +71,7 @@ def run(plan, args={}):
)
(
all_participants,
cl_genesis_timestamp,
final_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,
cl_genesis_timestamp,
final_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
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