Skip to content

Commit

Permalink
fix: return data about pariticpants even if no additional services ar…
Browse files Browse the repository at this point in the history
…e launched (#273)
  • Loading branch information
h4ck3rk3y committed Oct 6, 2023
1 parent 19fe54a commit d29f98e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion main.star
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,14 @@ def run(plan, args={}):
all_mevboost_contexts.append(mev_boost_context)

if not args_with_right_defaults.launch_additional_services:
return
output = struct(
all_participants=all_participants,
final_genesis_timestamp=final_genesis_timestamp,
genesis_validators_root=genesis_validators_root,
)

return output

launch_prometheus_grafana = False
for additional_service in args_with_right_defaults.additional_services:
if additional_service == "tx_spammer":
Expand Down

0 comments on commit d29f98e

Please sign in to comment.