support Reth v1.11.2, Monero v0.18.4.6

This commit is contained in:
The MMGen Project 2026-03-25 14:10:04 +00:00
commit 3d7e4a472a
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 5 additions and 5 deletions

View file

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

View file

@ -130,7 +130,7 @@ class geth_daemon(ethereum_daemon):
) )
class reth_daemon(geth_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+)' version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
exec_fn = 'reth' exec_fn = 'reth'
version_info_arg = '--version' version_info_arg = '--version'

View file

@ -19,7 +19,7 @@ from ...util import list_gen, die, contains_any
from ...daemon import CoinDaemon, RPCDaemon, _nw, _dd from ...daemon import CoinDaemon, RPCDaemon, _nw, _dd
class monero_daemon(CoinDaemon): 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') networks = ('mainnet', 'testnet')
exec_fn = 'monerod' exec_fn = 'monerod'
testnet_dir = 'stagenet' testnet_dir = 'stagenet'

View file

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