From 63ab04891689aa9f63dce37fb06c873c511e245c Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 27 Sep 2024 01:17:21 +0200 Subject: [PATCH] nixos/geth: add holesky testnet --- nixos/modules/services/blockchain/ethereum/geth.nix | 2 +- nixos/tests/geth.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/blockchain/ethereum/geth.nix b/nixos/modules/services/blockchain/ethereum/geth.nix index adf9fc1db32a..52040f2b9ec5 100644 --- a/nixos/modules/services/blockchain/ethereum/geth.nix +++ b/nixos/modules/services/blockchain/ethereum/geth.nix @@ -103,7 +103,7 @@ let }; 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."; }; diff --git a/nixos/tests/geth.nix b/nixos/tests/geth.nix index dc6490db57c9..7f7315271088 100644 --- a/nixos/tests/geth.nix +++ b/nixos/tests/geth.nix @@ -14,7 +14,7 @@ import ./make-test-python.nix ({ pkgs, ... }: { services.geth."testnet" = { enable = true; port = 30304; - network = "goerli"; + network = "holesky"; http = { enable = true; port = 18545;