From ee7528c5d5872768e7ddc25e9da963e764e3b594 Mon Sep 17 00:00:00 2001 From: Barnabas Busa Date: Tue, 2 Apr 2024 15:26:31 +0200 Subject: [PATCH] fix: prysm beacon_http_url (#535) --- src/cl/prysm/prysm_launcher.star | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/cl/prysm/prysm_launcher.star b/src/cl/prysm/prysm_launcher.star index 4a8b8c533..24ccac488 100644 --- a/src/cl/prysm/prysm_launcher.star +++ b/src/cl/prysm/prysm_launcher.star @@ -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(