Skip to content

Commit

Permalink
feat: add files artifact uuid information to cl client context (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Dec 18, 2023
1 parent 132fc83 commit 806ef47
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cl/cl_client_context.star
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def new_cl_client_context(
peer_id="",
snooper_enabled=False,
snooper_engine_context=None,
validator_keystore_files_artifact_uuid="",
):
return struct(
client_name=client_name,
Expand All @@ -23,4 +24,5 @@ def new_cl_client_context(
peer_id=peer_id,
snooper_enabled=snooper_enabled,
snooper_engine_context=snooper_engine_context,
validator_keystore_files_artifact_uuid=validator_keystore_files_artifact_uuid,
)
3 changes: 3 additions & 0 deletions src/cl/lighthouse/lighthouse_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,9 @@ def launch(
beacon_peer_id,
snooper_enabled,
snooper_engine_context,
validator_keystore_files_artifact_uuid=node_keystore_files.files_artifact_uuid
if node_keystore_files
else "",
)


Expand Down
3 changes: 3 additions & 0 deletions src/cl/lodestar/lodestar_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@ def launch(
beacon_peer_id,
snooper_enabled,
snooper_engine_context,
validator_keystore_files_artifact_uuid=node_keystore_files.files_artifact_uuid
if node_keystore_files
else "",
)


Expand Down
3 changes: 3 additions & 0 deletions src/cl/nimbus/nimbus_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,9 @@ def launch(
beacon_peer_id,
snooper_enabled,
snooper_engine_context,
validator_keystore_files_artifact_uuid=node_keystore_files.files_artifact_uuid
if node_keystore_files
else "",
)


Expand Down
3 changes: 3 additions & 0 deletions src/cl/prysm/prysm_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ def launch(
beacon_peer_id,
snooper_enabled,
snooper_engine_context,
validator_keystore_files_artifact_uuid=node_keystore_files.files_artifact_uuid
if node_keystore_files
else "",
)


Expand Down
3 changes: 3 additions & 0 deletions src/cl/teku/teku_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ def launch(
peer_id=beacon_peer_id,
snooper_enabled=snooper_enabled,
snooper_engine_context=snooper_engine_context,
validator_keystore_files_artifact_uuid=node_keystore_files.files_artifact_uuid
if node_keystore_files
else "",
)


Expand Down

0 comments on commit 806ef47

Please sign in to comment.