go-ethereum: 1.14.8 -> 1.14.9 (#342934)

Changed files
+5 -5
nixos
modules
services
blockchain
ethereum
tests
pkgs
by-name
go
go-ethereum
+1 -1
nixos/modules/services/blockchain/ethereum/geth.nix
···
};
network = lib.mkOption {
-
type = lib.types.nullOr (lib.types.enum [ "goerli" "rinkeby" "yolov2" "ropsten" ]);
+
type = lib.types.nullOr (lib.types.enum [ "goerli" "holesky" "rinkeby" "yolov2" "ropsten" ]);
default = null;
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
};
+1 -1
nixos/tests/geth.nix
···
services.geth."testnet" = {
enable = true;
port = 30304;
-
network = "goerli";
+
network = "holesky";
http = {
enable = true;
port = 18545;
+3 -3
pkgs/by-name/go/go-ethereum/package.nix
···
in buildGoModule rec {
pname = "go-ethereum";
-
version = "1.14.8";
+
version = "1.14.9";
src = fetchFromGitHub {
owner = "ethereum";
repo = pname;
rev = "v${version}";
-
hash = "sha256-y831v6ar1RdDvGQMZf2lZKgq2IQzAAQrNwDCL0xbj24=";
+
hash = "sha256-W0wHQMvbQJC3PdCZLVpE3cTasii/CkF+gdVOV2MX2Mo=";
};
proxyVendor = true;
-
vendorHash = "sha256-CLGf64Fftu4u8Vaj66Q4xuRKBEMNZmpltUyaUMVyVJk=";
+
vendorHash = "sha256-Fxl8fisdCH0nlUFOS5NLMnvfpqIhlTd6/BbR+qIzlKQ=";
doCheck = false;