From 2252ac2cdcb2841ba8d391a8a4f07c7c4a8f2194 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Thu, 18 Jun 2026 13:23:54 +0000 Subject: [PATCH] support Reth v2.3.0 --- 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 6d8802d2..6da231f9 100644 --- a/mmgen/data/version +++ b/mmgen/data/version @@ -1 +1 @@ -16.2.dev2 +16.2.dev3 diff --git a/mmgen/proto/eth/daemon.py b/mmgen/proto/eth/daemon.py index e3750b08..2f41aadd 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', 2002000, '2.2.0') + daemon_data = _dd('Reth', 2003000, '2.3.0') 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 56a52d4a..1cee4148 100644 --- a/nix/reth.nix +++ b/nix/reth.nix @@ -5,7 +5,7 @@ pkgs.rustPlatform.buildRustPackage rec { pname = "reth"; - version = "2.2.0"; + version = "2.3.0"; src = fetchGit { url = "https://github.com/paradigmxyz/reth"; @@ -14,7 +14,7 @@ pkgs.rustPlatform.buildRustPackage rec { shallow = true; }; - cargoHash = "sha256-tnFIuC9hKjrLjaUuHJVM/oEUQWls11gdstOtPFkFW8w="; + cargoHash = "sha256-D2DuofmPWXJT1dTRH1iOeJQ6DGbWu8FxOWNcPYMv3go="; doCheck = false; doInstallCheck = false;