support Reth v1.11.1

This commit is contained in:
The MMGen Project 2026-03-02 11:56:46 +00:00
commit d1145e6f1d
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 8 additions and 5 deletions

View file

@ -1 +1 @@
February 2026
March 2026

View file

@ -1 +1 @@
16.1.dev32
16.1.dev33

View file

@ -130,7 +130,7 @@ class geth_daemon(ethereum_daemon):
)
class reth_daemon(geth_daemon):
daemon_data = _dd('Reth', 1010002, '1.10.2')
daemon_data = _dd('Reth', 1011001, '1.11.1')
version_pat = r'reth/v(\d+)\.(\d+)\.(\d+)'
exec_fn = 'reth'
version_info_arg = '--version'

View file

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