Commit 49145316 authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: prysm beacon http url (#536)

parent ee7528c5
...@@ -36,15 +36,14 @@ def get_config( ...@@ -36,15 +36,14 @@ def get_config(
prysm_password_relative_filepath, prysm_password_relative_filepath,
) )
beacon_http_url = beacon_http_url[7:] # remove the "http://"
cmd = [ cmd = [
"--accept-terms-of-use=true", # it's mandatory in order to run the node "--accept-terms-of-use=true", # it's mandatory in order to run the node
"--chain-config-file=" "--chain-config-file="
+ constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER + constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER
+ "/config.yaml", + "/config.yaml",
"--beacon-rpc-provider=" "--beacon-rpc-provider=" + beacon_http_url,
+ "{0}".format(
cl_context.beacon_http_url,
),
"--beacon-rest-api-provider=" + beacon_http_url, "--beacon-rest-api-provider=" + beacon_http_url,
"--wallet-dir=" + validator_keys_dirpath, "--wallet-dir=" + validator_keys_dirpath,
"--wallet-password-file=" + validator_secrets_dirpath, "--wallet-password-file=" + validator_secrets_dirpath,
......
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