We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76c31e9 commit dd28d61Copy full SHA for dd28d61
src/dora/dora_launcher.star
@@ -93,12 +93,14 @@ def get_config(
93
DORA_CONFIG_FILENAME,
94
)
95
96
- if network_params.preset == "minimal":
97
- IMAGE_NAME = "ethpandaops/dora:minimal-preset"
98
- elif network_params.eip7594_fork_epoch < 100000000:
+ if network_params.eip7594_fork_epoch < 100000000:
99
IMAGE_NAME = "ethpandaops/dora:peer-das"
+ elif network_params.electra_fork_epoch < 100000000:
+ IMAGE_NAME = "ethpandaops/dora:electra-support"
100
else:
101
- IMAGE_NAME = "ethpandaops/dora:latest"
+ IMAGE_NAME = (
102
+ "ethpandaops/dora:master" # TODO: revert to latest after next dora release
103
+ )
104
105
return ServiceConfig(
106
image=IMAGE_NAME,
0 commit comments