From c7513dce5fdcc752ea4cccee4be60ffd8aecb699 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 23 Dec 2025 03:27:38 -0800 Subject: [PATCH] fix: bump outdated reth image The Reth image being used in the PandaOps Docker was outdated and contained a known regression under load which was initially disclosed by the Rise team. This PR updates it to the latest nightly image. We recommend re-running the benchmark to ensure that results are accurate! --- src/expb/configs/clients/reth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expb/configs/clients/reth.py b/src/expb/configs/clients/reth.py index 847a500..1fc2ce0 100644 --- a/src/expb/configs/clients/reth.py +++ b/src/expb/configs/clients/reth.py @@ -14,7 +14,7 @@ class RethConfig(ClientConfig): def __init__(self): super().__init__( name="reth", - default_image="ethpandaops/reth:performance", + default_image="paradigmxyz/reth:nightly", default_command=[ "node", f"--datadir={CLIENTS_DATA_DIR}",