Commit dd28d61a authored by pk910's avatar pk910 Committed by GitHub

fix: update dora images (#598)

parent 76c31e91
...@@ -93,12 +93,14 @@ def get_config( ...@@ -93,12 +93,14 @@ def get_config(
DORA_CONFIG_FILENAME, DORA_CONFIG_FILENAME,
) )
if network_params.preset == "minimal": if network_params.eip7594_fork_epoch < 100000000:
IMAGE_NAME = "ethpandaops/dora:minimal-preset"
elif network_params.eip7594_fork_epoch < 100000000:
IMAGE_NAME = "ethpandaops/dora:peer-das" IMAGE_NAME = "ethpandaops/dora:peer-das"
elif network_params.electra_fork_epoch < 100000000:
IMAGE_NAME = "ethpandaops/dora:electra-support"
else: else:
IMAGE_NAME = "ethpandaops/dora:latest" IMAGE_NAME = (
"ethpandaops/dora:master" # TODO: revert to latest after next dora release
)
return ServiceConfig( return ServiceConfig(
image=IMAGE_NAME, image=IMAGE_NAME,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment