Browse Source

support Reth v1.11.2, Monero v0.18.4.6

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

+ 1 - 1
mmgen/data/version

@@ -1 +1 @@
-16.1.dev33
+16.1.dev34

+ 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', 1011001, '1.11.1')
+	daemon_data = _dd('Reth', 1011002, '1.11.2')
 	version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
 	exec_fn = 'reth'
 	version_info_arg = '--version'

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

@@ -19,7 +19,7 @@ from ...util import list_gen, die, contains_any
 from ...daemon import CoinDaemon, RPCDaemon, _nw, _dd
 
 class monero_daemon(CoinDaemon):
-	daemon_data = _dd('Monero', 18004005, '0.18.4.5-release')
+	daemon_data = _dd('Monero', 18004006, '0.18.4.6-release')
 	networks = ('mainnet', 'testnet')
 	exec_fn = 'monerod'
 	testnet_dir = 'stagenet'

+ 2 - 2
nix/reth.nix

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