Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed default network configs in init command #1058

Merged
merged 1 commit into from
Jan 2, 2025
Merged
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
5 changes: 4 additions & 1 deletion pkg/config/node_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@
}

// Update the default consensus config
cfg.Consensus.TimeoutCommit = time.Second
cfg.Consensus.TimeoutCommit = 500 * time.Millisecond
cfg.Consensus.PeerGossipSleepDuration = 10 * time.Millisecond
cfg.Consensus.PeerQueryMaj23SleepDuration = 10 * time.Millisecond
cfg.P2P.FlushThrottleTimeout = 10 * time.Millisecond

Check warning on line 83 in pkg/config/node_config.go

View check run for this annotation

Codecov / codecov/patch

pkg/config/node_config.go#L80-L83

Added lines #L80 - L83 were not covered by tests

return cfg
}
Expand Down
Loading