Skip to content

Commit 34a2536

Browse files
committed
config(nethermind): Add Sync.FastSync option
1 parent 9324bd0 commit 34a2536

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

modules/nethermind/args.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,14 @@ with lib; {
122122
description = "If 'true' then Health Check endpoints is enabled at /health";
123123
};
124124
};
125+
126+
# https://docs.nethermind.io/fundamentals/configuration/#sync
127+
Sync = {
128+
FastSync = mkOption {
129+
type = types.bool;
130+
default = true;
131+
description = "Whether to use the Fast sync mode (the eth/63 synchronization algorithm).";
132+
};
133+
};
125134
};
126135
}

0 commit comments

Comments
 (0)