Skip to content

Commit

Permalink
fix: prysm beacon http url (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Apr 2, 2024
1 parent ee7528c commit 4914531
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/vc/prysm.star
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4914531

Please sign in to comment.