Browse Source

support Reth v1.8.3

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

+ 1 - 1
mmgen/data/version

@@ -1 +1 @@
-16.1.dev8
+16.1.dev9

+ 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', 1008002, '1.8.2')
+	daemon_data = _dd('Reth', 1008003, '1.8.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'

+ 3 - 4
nix/reth.nix

@@ -1,6 +1,5 @@
 {
 {
     lib,
     lib,
-    rustPlatform,
 }:
 }:
 
 
 let
 let
@@ -16,9 +15,9 @@ let
 
 
 in
 in
 
 
-rustPlatform.buildRustPackage rec {
+pkgs.rustPlatform.buildRustPackage rec {
     pname = "reth";
     pname = "reth";
-    version = "1.8.2";
+    version = "1.8.3";
 
 
     src = fetchGit {
     src = fetchGit {
         url = "https://github.com/paradigmxyz/reth";
         url = "https://github.com/paradigmxyz/reth";
@@ -27,7 +26,7 @@ rustPlatform.buildRustPackage rec {
         shallow = true;
         shallow = true;
     };
     };
 
 
-    cargoHash = "sha256-KxUiiOTlMNlPw4pHjEcqXsMF3RCA0KVO66WKpz1YoT0=";
+    cargoHash = "sha256-v7B2W9SSQvUlJQzP/AAffsJq+fP4Ghxr4C5+gB1LE9k=";
 
 
     nativeBuildInputs = [
     nativeBuildInputs = [
         pkgs.clang
         pkgs.clang