Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/tests/geth-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,3 @@ participants:
cl_type: lodestar
- el_type: geth
cl_type: grandine
additional_services:
- spamoor
- dora
8 changes: 7 additions & 1 deletion src/el/geth/geth_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ def get_config(
"--authrpc.vhosts=*",
"--authrpc.jwtsecret=" + constants.JWT_MOUNT_PATH_ON_CONTAINER,
"--syncmode=full"
if network_params.network == "kurtosis" and not gcmode_archive
if network_params.network == constants.NETWORK_NAME.kurtosis
and not gcmode_archive
else "--syncmode=snap"
if not gcmode_archive
else "--gcmode=archive",
Expand All @@ -224,6 +225,11 @@ def get_config(
"--metrics.port={0}".format(METRICS_PORT_NUM),
"--discovery.port={0}".format(discovery_port_tcp),
"--port={0}".format(discovery_port_tcp),
"{0}".format(
"--miner.gasprice=1"
if network_params.network == constants.NETWORK_NAME.kurtosis
else ""
),
]

if network_params.gas_limit > 0:
Expand Down