Skip to content

Commit

Permalink
refactor(config): move leader_schedule_path field out of general section
Browse files Browse the repository at this point in the history
  • Loading branch information
dnut committed Jun 28, 2024
1 parent bd13921 commit 4abb203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/config.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ pub const Config = struct {
gossip: GossipConfig = .{},
shred_collector: ShredCollectorConfig = shred_collector_defaults,
accounts_db: AccountsDBConfig = .{},
leader_schedule_path: ?[]const u8 = null,
// general config
log_level: []const u8 = "debug",
metrics_port: u16 = 12345,
leader_schedule_path: ?[]const u8 = null,
};

pub const current: *Config = &default_validator_config;
Expand Down

0 comments on commit 4abb203

Please sign in to comment.