Browse Source

support Reth v1.9.0

The MMGen Project 4 weeks ago
parent
commit
2e2c3b64a0
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.dev10
+16.1.dev11

+ 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', 1008003, '1.8.3')
+	daemon_data = _dd('Reth', 1009000, '1.9.0')
 	version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
 	exec_fn = 'reth'
 	version_info_arg = '--version'

+ 2 - 2
nix/reth.nix

@@ -17,7 +17,7 @@ in
 
 pkgs.rustPlatform.buildRustPackage rec {
     pname = "reth";
-    version = "1.8.3";
+    version = "1.9.0";
 
     src = fetchGit {
         url = "https://github.com/paradigmxyz/reth";
@@ -26,7 +26,7 @@ pkgs.rustPlatform.buildRustPackage rec {
         shallow = true;
     };
 
-    cargoHash = "sha256-v7B2W9SSQvUlJQzP/AAffsJq+fP4Ghxr4C5+gB1LE9k=";
+    cargoHash = "sha256-VOxT6+LCbWSNzSrLpD0DpbV0iPcy9nUtEaUgmQfTRsI=";
 
     nativeBuildInputs = [
         pkgs.clang