Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
updating flags
Browse files Browse the repository at this point in the history
  • Loading branch information
parithosh committed Jul 5, 2023
1 parent e8de8cd commit ddf3c94
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package_io/input_parser.star
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
DEFAULT_EL_IMAGES = {
"geth": "ethereum/client-go:v1.11.5",
"geth": "ethereum/client-go:latest",
"erigon": "thorax/erigon:devel",
"nethermind": "nethermind/nethermind:1.14.0",
"nethermind": "nethermind/nethermind:latest",
"besu": "hyperledger/besu:develop"
}

DEFAULT_CL_IMAGES = {
"lighthouse": "sigp/lighthouse:v3.5.0",
"teku": "consensys/teku:23.1",
"lighthouse": "sigp/lighthouse:latest",
"teku": "consensys/teku:latest",
"nimbus": "statusim/nimbus-eth2:multiarch-latest",
"prysm": "prysmaticlabs/prysm/beacon-chain:latest,prysmaticlabs/prysm/validator:latest",
"lodestar": "chainsafe/lodestar:v1.7.2",
"prysm": "prysmaticlabs/prysm-beacon-chain:latest,prysmaticlabs/prysm-validator:latest",
"lodestar": "chainsafe/lodestar:latest",
}

BESU_NODE_NAME = "besu"
Expand Down
2 changes: 1 addition & 1 deletion src/cl/lighthouse/lighthouse_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def get_beacon_config(
cmd.extend([param for param in extra_params])

recipe = GetHttpRequestRecipe(
endpoint = "/lighthouse/health",
endpoint = "/eth/v1/node/identity",
port_id = BEACON_HTTP_PORT_ID
)

Expand Down
2 changes: 2 additions & 0 deletions src/el/besu/besu_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ def get_config(network_id, genesis_data, image, existing_el_clients, log_level,
"--engine-jwt-secret={0}".format(jwt_secret_json_filepath_on_client),
"--engine-host-allowlist=*",
"--engine-rpc-port={0}".format(ENGINE_HTTP_RPC_PORT_NUM),
"--sync-mode=FULL",
"--data-storage-format=BONSAI",
]

if len(existing_el_clients) > 0:
Expand Down

0 comments on commit ddf3c94

Please sign in to comment.