Loading nixos/modules/services/blockchain/ethereum/geth.nix +1 −1 Original line number Diff line number Diff line Loading @@ -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."; }; Loading nixos/tests/geth.nix +1 −1 Original line number Diff line number Diff line Loading @@ -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; Loading Loading
nixos/modules/services/blockchain/ethereum/geth.nix +1 −1 Original line number Diff line number Diff line Loading @@ -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."; }; Loading
nixos/tests/geth.nix +1 −1 Original line number Diff line number Diff line Loading @@ -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; Loading