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