From c8371c4a80fc6b37a37dec77b43421884719f6c1 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Sat, 8 Nov 2025 14:26:51 +0000 Subject: [PATCH] revert Reth support to v1.8.4 Version 1.9.0 is broken: https://github.com/paradigmxyz/reth/issues/19566 Note that v1.9.1, providing the fix for v1.9.0, also has issues: https://github.com/paradigmxyz/reth/releases/tag/v1.9.1 --- mmgen/data/version | 2 +- mmgen/proto/eth/daemon.py | 2 +- nix/reth.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mmgen/data/version b/mmgen/data/version index 1bfe63bf..f8d3d5c2 100644 --- a/mmgen/data/version +++ b/mmgen/data/version @@ -1 +1 @@ -16.1.dev11 +16.1.dev12 diff --git a/mmgen/proto/eth/daemon.py b/mmgen/proto/eth/daemon.py index 9c2e8871..529877e7 100755 --- a/mmgen/proto/eth/daemon.py +++ b/mmgen/proto/eth/daemon.py @@ -130,7 +130,7 @@ class geth_daemon(ethereum_daemon): ) class reth_daemon(geth_daemon): - daemon_data = _dd('Reth', 1009000, '1.9.0') + daemon_data = _dd('Reth', 1008004, '1.8.4') version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)' exec_fn = 'reth' version_info_arg = '--version' diff --git a/nix/reth.nix b/nix/reth.nix index 60a8349e..4ec1379e 100644 --- a/nix/reth.nix +++ b/nix/reth.nix @@ -17,7 +17,7 @@ in pkgs.rustPlatform.buildRustPackage rec { pname = "reth"; - version = "1.9.0"; + version = "1.8.4"; src = fetchGit { url = "https://github.com/paradigmxyz/reth"; @@ -26,7 +26,7 @@ pkgs.rustPlatform.buildRustPackage rec { shallow = true; }; - cargoHash = "sha256-VOxT6+LCbWSNzSrLpD0DpbV0iPcy9nUtEaUgmQfTRsI="; + cargoHash = "sha256-nfk7xq5Mh4ggUHnkKc7cxmHT75IP+8yG6ssurTFURNw="; nativeBuildInputs = [ pkgs.clang