Skip to content

Commit

Permalink
fix: prysm beacon_http_url (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Apr 2, 2024
1 parent b62ed6f commit ee7528c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/cl/prysm/prysm_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,12 @@ def launch(

beacon_http_port = beacon_service.ports[BEACON_HTTP_PORT_ID]

beacon_http_endpoint = "{0}:{1}".format(beacon_service.ip_address, HTTP_PORT_NUM)
beacon_rpc_endpoint = "{0}:{1}".format(beacon_service.ip_address, RPC_PORT_NUM)
beacon_http_endpoint = "http://{0}:{1}".format(
beacon_service.ip_address, HTTP_PORT_NUM
)
beacon_rpc_endpoint = "http://{0}:{1}".format(
beacon_service.ip_address, RPC_PORT_NUM
)
beacon_http_url = beacon_rpc_endpoint
# TODO(old) add validator availability using the validator API: https://ethereum.github.io/beacon-APIs/?urls.primaryName=v1#/ValidatorRequiredApi | from eth2-merge-kurtosis-module
beacon_node_identity_recipe = GetHttpRequestRecipe(
Expand Down

0 comments on commit ee7528c

Please sign in to comment.