Skip to content

Commit

Permalink
fix: use correct dora & assertoor images (#522)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
pk910 authored Mar 22, 2024
1 parent 49509b9 commit 2a8d73a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions src/assertoor/assertoor_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ def get_config(

if assertoor_params.image != "":
IMAGE_NAME = assertoor_params.image
elif network_params.electra_fork_epoch != None:
IMAGE_NAME = "ethpandaops/assertoor:verkle-support"
else:
IMAGE_NAME = "ethpandaops/assertoor:latest"

Expand Down
6 changes: 1 addition & 5 deletions src/dora/dora_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,7 @@ def get_config(
DORA_CONFIG_FILENAME,
)

# TODO: This is a hack to get the verkle support image for the electra fork
if electra_fork_epoch != None or "verkle" in network:
IMAGE_NAME = "ethpandaops/dora:verkle-support"
else:
IMAGE_NAME = "ethpandaops/dora:master"
IMAGE_NAME = "ethpandaops/dora:latest"

return ServiceConfig(
image=IMAGE_NAME,
Expand Down

0 comments on commit 2a8d73a

Please sign in to comment.