Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions modules/nethermind/args.nix
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,14 @@ with lib; {
description = "If 'true' then Health Check endpoints is enabled at /health";
};
};

# https://docs.nethermind.io/fundamentals/configuration/#sync
Sync = {
FastSync = mkOption {
type = types.bool;
default = true;
description = "Whether to use the Fast sync mode (the eth/63 synchronization algorithm).";
};
};
};
}
4 changes: 2 additions & 2 deletions pkgs/nethermind/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}: let
self = buildDotnetModule rec {
pname = "nethermind";
version = "1.31.0";
version = "1.31.1";

src = fetchFromGitHub {
owner = "NethermindEth";
repo = pname;
rev = version;
hash = "sha256-lR/WHOR8idHYr0QDwgNSvaUBaBmEUXlXkXvKrRpxBl8=";
hash = "sha256-B86iVpDAztR9zZVBmMhN7M79PfpSXof4ny6iFb5GWpc=";
fetchSubmodules = true;
};

Expand Down