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
83135f46
Commit
83135f46
authored
Dec 12, 2022
by
Victor Colombo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Interpretation error
parent
c2789884
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
cl_node_health_checker.star
src/participant_network/cl/cl_node_health_checker.star
+1
-1
lodestar_launcher.star
src/participant_network/cl/lodestar/lodestar_launcher.star
+1
-1
prysm_launcher.star
src/participant_network/cl/prysm/prysm_launcher.star
+1
-1
teku_launcher.star
src/participant_network/cl/teku/teku_launcher.star
+2
-2
besu_launcher.star
src/participant_network/el/besu/besu_launcher.star
+1
-1
geth_launcher.star
src/participant_network/el/geth/geth_launcher.star
+1
-1
No files found.
src/participant_network/cl/cl_node_health_checker.star
View file @
83135f46
...
@@ -5,6 +5,6 @@ def wait(service_id, port_id):
...
@@ -5,6 +5,6 @@ def wait(service_id, port_id):
method= "GET",
method= "GET",
endpoint = "/eth/v1/node/health",
endpoint = "/eth/v1/node/health",
content_type = "application/json",
content_type = "application/json",
port_id =
HTTP_PORT_ID
port_id =
port_id
)
)
return wait(recipe, "code", "IN", [200, 206, 503])
return wait(recipe, "code", "IN", [200, 206, 503])
\ No newline at end of file
src/participant_network/cl/lodestar/lodestar_launcher.star
View file @
83135f46
...
@@ -112,7 +112,7 @@ def launch(
...
@@ -112,7 +112,7 @@ def launch(
method= "GET",
method= "GET",
endpoint = "/eth/v1/node/identity",
endpoint = "/eth/v1/node/identity",
content_type = "application/json",
content_type = "application/json",
port_id = HTTP_PORT_ID
port_id = HTTP_PORT_ID
,
extract = {
extract = {
"enr": ".data.enr"
"enr": ".data.enr"
}
}
...
...
src/participant_network/cl/prysm/prysm_launcher.star
View file @
83135f46
...
@@ -136,7 +136,7 @@ def launch(
...
@@ -136,7 +136,7 @@ def launch(
method= "GET",
method= "GET",
endpoint = "/eth/v1/node/identity",
endpoint = "/eth/v1/node/identity",
content_type = "application/json",
content_type = "application/json",
port_id = HTTP_PORT_ID
port_id = HTTP_PORT_ID
,
extract = {
extract = {
"enr": ".data.enr"
"enr": ".data.enr"
}
}
...
...
src/participant_network/cl/teku/teku_launcher.star
View file @
83135f46
...
@@ -99,12 +99,12 @@ def launch(
...
@@ -99,12 +99,12 @@ def launch(
method= "GET",
method= "GET",
endpoint = "/eth/v1/node/identity",
endpoint = "/eth/v1/node/identity",
content_type = "application/json",
content_type = "application/json",
port_id =
BEACON_
HTTP_PORT_ID,
port_id = HTTP_PORT_ID,
extract = {
extract = {
"enr": ".data.enr"
"enr": ".data.enr"
}
}
)
)
node_enr = request(
beacon_
node_identity_recipe)["extract.enr"]
node_enr = request(node_identity_recipe)["extract.enr"]
teku_metrics_port = teku_service.ports[METRICS_PORT_ID]
teku_metrics_port = teku_service.ports[METRICS_PORT_ID]
...
...
src/participant_network/el/besu/besu_launcher.star
View file @
83135f46
...
@@ -73,7 +73,7 @@ def launch(
...
@@ -73,7 +73,7 @@ def launch(
"enode": ".result.enode",
"enode": ".result.enode",
}
}
)
)
response = request(
service_id = service_id, fact_name = ENR_FACT_NAME
)
response = request(
result_recipe
)
return el_client_context.new_el_client_context(
return el_client_context.new_el_client_context(
"besu",
"besu",
...
...
src/participant_network/el/geth/geth_launcher.star
View file @
83135f46
...
@@ -85,7 +85,7 @@ def launch(
...
@@ -85,7 +85,7 @@ def launch(
"enode": ".result.enode",
"enode": ".result.enode",
}
}
)
)
response = request(
service_id = service_id, fact_name = ENR_FACT_NAME
)
response = request(
result_recipe
)
return el_client_context.new_el_client_context(
return el_client_context.new_el_client_context(
...
...
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