Skip to content

Commit ee7528c

Browse files
authored
fix: prysm beacon_http_url (ethereum#535)
1 parent b62ed6f commit ee7528c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/cl/prysm/prysm_launcher.star

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,12 @@ def launch(
148148

149149
beacon_http_port = beacon_service.ports[BEACON_HTTP_PORT_ID]
150150

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

0 commit comments

Comments
 (0)