Commit a275fdae authored by Gyanendra Mishra's avatar Gyanendra Mishra

fix prysm validator

parent 1b31f1ca
......@@ -76,4 +76,5 @@ This is the Startosis version of the popular [eth2-merge-kurtosis-module](https:
- [x] cl_rest_client/el_rest_client - DESCOPED as facts will do this
- [x] cl_node_metrics_info - pure POJO NO BLOCKERS
- [x] get render templates to have the magic strings subsituted with real values
- [ ] confirm that the 0x30000038 value in `static_files/genesis-generation-config/cl/config.yaml.tmpl` is correct - this makes prysm work
\ No newline at end of file
- [ ] confirm that the 0x30000038 value in `static_files/genesis-generation-config/cl/config.yaml.tmpl` is correct - this makes prysm work
- [ ] confirm behavior of artifact_uuid post for loop fix
\ No newline at end of file
......@@ -112,8 +112,8 @@ def launch(
beacon_http_port = beacon_service.ports[HTTP_PORT_ID]
# Launch validator node
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_endpoint = "{0}:{1}".format(beacon_service.ip_address, HTTP_PORT_NUM)
beacon_rpc_endpoint = "{0}:{1}".format(beacon_service.ip_address, RPC_PORT_NUM)
validator_service_config = get_validator_service_config(
launcher.genesis_data,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment