Browse Source

support Reth v1.9.4

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

+ 1 - 1
mmgen/data/version

@@ -1 +1 @@
-16.1.dev23
+16.1.dev24

+ 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', 1009003, '1.9.3')
+	daemon_data = _dd('Reth', 1009004, '1.9.4')
 	version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
 	exec_fn = 'reth'
 	version_info_arg = '--version'

+ 2 - 2
nix/reth.nix

@@ -5,7 +5,7 @@
 
 pkgs.rustPlatform.buildRustPackage rec {
     pname = "reth";
-    version = "1.9.3";
+    version = "1.9.4";
 
     src = fetchGit {
         url = "https://github.com/paradigmxyz/reth";
@@ -14,7 +14,7 @@ pkgs.rustPlatform.buildRustPackage rec {
         shallow = true;
     };
 
-    cargoHash = "sha256-WDe75Sg7y4GfH3dSfY48aXrIBe89skj1VW0NcgtLEVU=";
+    cargoHash = "sha256-etYpgSbHPEdP0u6nywOa/05wda20kDrvOXVLOwcCiW4=";
 
     nativeBuildInputs = [
         pkgs.clang