From db73afbae0a6ecf432dc84bf1c46f07e39daa10f Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Mon, 6 Oct 2025 09:40:52 +0000 Subject: [PATCH] support Reth v1.8.2, Geth v1.16.4 --- mmgen/data/version | 2 +- mmgen/proto/eth/daemon.py | 4 ++-- nix/reth.nix | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mmgen/data/version b/mmgen/data/version index 42ec8a5b..cc9f6d03 100644 --- a/mmgen/data/version +++ b/mmgen/data/version @@ -1 +1 @@ -16.1.dev4 +16.1.dev5 diff --git a/mmgen/proto/eth/daemon.py b/mmgen/proto/eth/daemon.py index 3614b816..cd31219d 100755 --- a/mmgen/proto/eth/daemon.py +++ b/mmgen/proto/eth/daemon.py @@ -96,7 +96,7 @@ class geth_daemon(ethereum_daemon): # mempool deadlock in dev mode: "transaction indexing is in progress" # https://github.com/ethereum/go-ethereum/issues/29475 # offending commit (via git bisect): 0a2f33946b95989e8ce36e72a88138adceab6a23 - daemon_data = _dd('Geth', 1016003, '1.16.3') + daemon_data = _dd('Geth', 1016004, '1.16.4') version_pat = r'Geth/v(\d+)\.(\d+)\.(\d+)' exec_fn = 'geth' use_pidfile = False @@ -130,7 +130,7 @@ class geth_daemon(ethereum_daemon): ) class reth_daemon(geth_daemon): - daemon_data = _dd('Reth', 1007000, '1.7.0') + daemon_data = _dd('Reth', 1008020, '1.8.2') 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 6f5f1c5d..6f30e424 100644 --- a/nix/reth.nix +++ b/nix/reth.nix @@ -18,7 +18,7 @@ in rustPlatform.buildRustPackage rec { pname = "reth"; - version = "1.7.0"; + version = "1.8.2"; src = fetchGit { url = "https://github.com/paradigmxyz/reth"; @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec { shallow = true; }; - cargoHash = "sha256-2zdilVIHCW0N2yZNfLNoVpTASjXU1ABcZzQLzpAGEsY="; + cargoHash = "sha256-KxUiiOTlMNlPw4pHjEcqXsMF3RCA0KVO66WKpz1YoT0="; nativeBuildInputs = [ pkgs.clang