Browse Source

support Reth v1.9.3

The MMGen Project 1 week ago
parent
commit
46c6710a0b
2 changed files with 3 additions and 3 deletions
  1. 1 1
      mmgen/proto/eth/daemon.py
  2. 2 2
      nix/reth.nix

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

@@ -130,7 +130,7 @@ class geth_daemon(ethereum_daemon):
 		)
 		)
 
 
 class reth_daemon(geth_daemon):
 class reth_daemon(geth_daemon):
-	daemon_data = _dd('Reth', 1009002, '1.9.2')
+	daemon_data = _dd('Reth', 1009003, '1.9.3')
 	version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
 	version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
 	exec_fn = 'reth'
 	exec_fn = 'reth'
 	version_info_arg = '--version'
 	version_info_arg = '--version'

+ 2 - 2
nix/reth.nix

@@ -17,7 +17,7 @@ in
 
 
 pkgs.rustPlatform.buildRustPackage rec {
 pkgs.rustPlatform.buildRustPackage rec {
     pname = "reth";
     pname = "reth";
-    version = "1.9.2";
+    version = "1.9.3";
 
 
     src = fetchGit {
     src = fetchGit {
         url = "https://github.com/paradigmxyz/reth";
         url = "https://github.com/paradigmxyz/reth";
@@ -26,7 +26,7 @@ pkgs.rustPlatform.buildRustPackage rec {
         shallow = true;
         shallow = true;
     };
     };
 
 
-    cargoHash = "sha256-NGVHKoh/coGMkI5tcF+UnylGa1RO8K/rQRpFVTgaw5Y=";
+    cargoHash = "sha256-WDe75Sg7y4GfH3dSfY48aXrIBe89skj1VW0NcgtLEVU=";
 
 
     nativeBuildInputs = [
     nativeBuildInputs = [
         pkgs.clang
         pkgs.clang