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

Circuit breaker: lower max builder epoch missed slots to 5 #12076

Merged
merged 6 commits into from Mar 5, 2023
Merged
2 changes: 1 addition & 1 deletion config/params/mainnet_config.go
Expand Up @@ -257,7 +257,7 @@ var mainnetBeaconConfig = &BeaconChainConfig{

// Mevboost circuit breaker
MaxBuilderConsecutiveMissedSlots: 3,
MaxBuilderEpochMissedSlots: 8,
MaxBuilderEpochMissedSlots: 5,

// Execution engine timeout value
ExecutionEngineTimeoutValue: 8, // 8 seconds default based on: https://github.com/ethereum/execution-apis/blob/main/src/engine/specification.md#core
Expand Down