Commit 2a8d73ab authored by pk910's avatar pk910 Committed by GitHub

fix: use correct dora & assertoor images (#522)

Verkle support has been dropped from the package.
Dora & Assertoor were using custom images to support verkle, these
images are now accidentally used, as electra_fork_epoch is set to 500
now by default.
parent 49509b9e
...@@ -116,8 +116,6 @@ def get_config( ...@@ -116,8 +116,6 @@ def get_config(
if assertoor_params.image != "": if assertoor_params.image != "":
IMAGE_NAME = assertoor_params.image IMAGE_NAME = assertoor_params.image
elif network_params.electra_fork_epoch != None:
IMAGE_NAME = "ethpandaops/assertoor:verkle-support"
else: else:
IMAGE_NAME = "ethpandaops/assertoor:latest" IMAGE_NAME = "ethpandaops/assertoor:latest"
......
...@@ -87,11 +87,7 @@ def get_config( ...@@ -87,11 +87,7 @@ def get_config(
DORA_CONFIG_FILENAME, DORA_CONFIG_FILENAME,
) )
# TODO: This is a hack to get the verkle support image for the electra fork IMAGE_NAME = "ethpandaops/dora:latest"
if electra_fork_epoch != None or "verkle" in network:
IMAGE_NAME = "ethpandaops/dora:verkle-support"
else:
IMAGE_NAME = "ethpandaops/dora:master"
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