Skip to content

Commit

Permalink
fix: update dora images (#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed May 8, 2024
1 parent 76c31e9 commit dd28d61
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/dora/dora_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,14 @@ def get_config(
DORA_CONFIG_FILENAME,
)

if network_params.preset == "minimal":
IMAGE_NAME = "ethpandaops/dora:minimal-preset"
elif network_params.eip7594_fork_epoch < 100000000:
if network_params.eip7594_fork_epoch < 100000000:
IMAGE_NAME = "ethpandaops/dora:peer-das"
elif network_params.electra_fork_epoch < 100000000:
IMAGE_NAME = "ethpandaops/dora:electra-support"
else:
IMAGE_NAME = "ethpandaops/dora:latest"
IMAGE_NAME = (
"ethpandaops/dora:master" # TODO: revert to latest after next dora release
)

return ServiceConfig(
image=IMAGE_NAME,
Expand Down

0 comments on commit dd28d61

Please sign in to comment.