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
806ef47a
Unverified
Commit
806ef47a
authored
Dec 18, 2023
by
Gyanendra Mishra
Committed by
GitHub
Dec 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add files artifact uuid information to cl client context (#418)
parent
132fc835
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
0 deletions
+17
-0
cl_client_context.star
src/cl/cl_client_context.star
+2
-0
lighthouse_launcher.star
src/cl/lighthouse/lighthouse_launcher.star
+3
-0
lodestar_launcher.star
src/cl/lodestar/lodestar_launcher.star
+3
-0
nimbus_launcher.star
src/cl/nimbus/nimbus_launcher.star
+3
-0
prysm_launcher.star
src/cl/prysm/prysm_launcher.star
+3
-0
teku_launcher.star
src/cl/teku/teku_launcher.star
+3
-0
No files found.
src/cl/cl_client_context.star
View file @
806ef47a
...
...
@@ -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,
...
...
@@ -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,
)
src/cl/lighthouse/lighthouse_launcher.star
View file @
806ef47a
...
...
@@ -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 "",
)
...
...
src/cl/lodestar/lodestar_launcher.star
View file @
806ef47a
...
...
@@ -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 "",
)
...
...
src/cl/nimbus/nimbus_launcher.star
View file @
806ef47a
...
...
@@ -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 "",
)
...
...
src/cl/prysm/prysm_launcher.star
View file @
806ef47a
...
...
@@ -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 "",
)
...
...
src/cl/teku/teku_launcher.star
View file @
806ef47a
...
...
@@ -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 "",
)
...
...
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