Merge pull request #132553 from iceman-p/go-ethereum-snap

nixos/geth: Change default to snap sync
This commit is contained in:
Lassulus
2021-08-17 11:32:35 +02:00
committed by GitHub
@@ -83,8 +83,8 @@ let
};
syncmode = mkOption {
type = types.enum [ "fast" "full" "light" ];
default = "fast";
type = types.enum [ "snap" "fast" "full" "light" ];
default = "snap";
description = "Blockchain sync mode.";
};