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
commit fc50593e17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.";
};