Browse Source

support Reth v1.11.1

The MMGen Project 2 days ago
parent
commit
d1145e6f1d
4 changed files with 8 additions and 5 deletions
  1. 1 1
      mmgen/data/release_date
  2. 1 1
      mmgen/data/version
  3. 1 1
      mmgen/proto/eth/daemon.py
  4. 5 2
      nix/reth.nix

+ 1 - 1
mmgen/data/release_date

@@ -1 +1 @@
-February 2026
+March 2026

+ 1 - 1
mmgen/data/version

@@ -1 +1 @@
-16.1.dev32
+16.1.dev33

+ 1 - 1
mmgen/proto/eth/daemon.py

@@ -130,7 +130,7 @@ class geth_daemon(ethereum_daemon):
 		)
 
 class reth_daemon(geth_daemon):
-	daemon_data = _dd('Reth', 1010002, '1.10.2')
+	daemon_data = _dd('Reth', 1011001, '1.11.1')
 	version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
 	exec_fn = 'reth'
 	version_info_arg = '--version'

+ 5 - 2
nix/reth.nix

@@ -5,7 +5,7 @@
 
 pkgs.rustPlatform.buildRustPackage rec {
     pname = "reth";
-    version = "1.10.2";
+    version = "1.11.1";
 
     src = fetchGit {
         url = "https://github.com/paradigmxyz/reth";
@@ -14,7 +14,10 @@ pkgs.rustPlatform.buildRustPackage rec {
         shallow = true;
     };
 
-    cargoHash = "sha256-X3OGsN+JRFW2As9W6r8vEYXaeJA/qpVFOzZxHaEYF3I=";
+    cargoHash = "sha256-OJp+CAiz/1LWLt0qQrvzjFsU2nIz4ehc+bBtdTf17Oc=";
+
+    doCheck = false;
+    doInstallCheck = false;
 
     nativeBuildInputs = [
         pkgs.perl