mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-16 20:39:10 +00:00
Add vc --disable-attesting flag
This commit is contained in:
@@ -230,6 +230,7 @@ pub struct DutiesService<T, E: EthSpec> {
|
||||
pub enable_high_validator_count_metrics: bool,
|
||||
/// If this validator is running in distributed mode.
|
||||
pub distributed: bool,
|
||||
pub disable_attesting: bool,
|
||||
}
|
||||
|
||||
impl<T: SlotClock + 'static, E: EthSpec> DutiesService<T, E> {
|
||||
@@ -403,6 +404,11 @@ pub fn start_update_service<T: SlotClock + 'static, E: EthSpec>(
|
||||
"duties_service_proposers",
|
||||
);
|
||||
|
||||
// Skip starting attestation duties or sync committee services.
|
||||
if core_duties_service.disable_attesting {
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* Spawn the task which keeps track of local attestation duties.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user