Unverified Commit 27e93e30 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

parents a9761d2b 63ab0489
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.";
      };
+1 −1
Original line number Diff line number Diff line
@@ -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;
+3 −3
Original line number Diff line number Diff line
@@ -9,17 +9,17 @@ let

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;