Skip to content

Commit dd28d61

Browse files
authored
fix: update dora images (#598)
1 parent 76c31e9 commit dd28d61

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/dora/dora_launcher.star

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,14 @@ def get_config(
9393
DORA_CONFIG_FILENAME,
9494
)
9595

96-
if network_params.preset == "minimal":
97-
IMAGE_NAME = "ethpandaops/dora:minimal-preset"
98-
elif network_params.eip7594_fork_epoch < 100000000:
96+
if network_params.eip7594_fork_epoch < 100000000:
9997
IMAGE_NAME = "ethpandaops/dora:peer-das"
98+
elif network_params.electra_fork_epoch < 100000000:
99+
IMAGE_NAME = "ethpandaops/dora:electra-support"
100100
else:
101-
IMAGE_NAME = "ethpandaops/dora:latest"
101+
IMAGE_NAME = (
102+
"ethpandaops/dora:master" # TODO: revert to latest after next dora release
103+
)
102104

103105
return ServiceConfig(
104106
image=IMAGE_NAME,

0 commit comments

Comments
 (0)