You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This generally works well, however it doesn't account for the scenario where the time is incorrect and changes during operation. E.g., if your VC is 5s slow when it starts, even if you change your clock the DutiesService will keep using that old time.
Steps to Resolve
Options:
Change to a mechanism that adjusts with the system clock.
Check against the slot clock when the services start and log an error if their out of sync (not ideal, but interesting stop-gap for the time being).
The text was updated successfully, but these errors were encountered:
Description
The
DutiesService
(and others) in the VC presently doing their polling by waiting until the beginning of a slot then starting a repeating 12s timer:lighthouse/validator_client/src/duties_service.rs
Lines 471 to 478 in 65dcdc3
This generally works well, however it doesn't account for the scenario where the time is incorrect and changes during operation. E.g., if your VC is 5s slow when it starts, even if you change your clock the
DutiesService
will keep using that old time.Steps to Resolve
Options:
The text was updated successfully, but these errors were encountered: