-
Notifications
You must be signed in to change notification settings - Fork 795
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
Add --exit-epoch
flag to validator-manager
#4303
Comments
@xenowits As a workaround, try using the keymanager API for exits: https://ethereum.github.io/keymanager-APIs/?urls.primaryName=dev#/Voluntary%20Exit/signVoluntaryExit Info on setting up the Lighthouse VC API can be found here: https://lighthouse-book.sigmaprime.io/api-vc.html |
This may also be already implemented by #3502, I'm not sure. |
Thanks for the workaround! But, do you think it is feasible to introduce this feature or are there some limitations? |
@xenowits It's definitely feasible. The |
okay, so the Yeah, this subcommand would be cool to use for exits then 👍 |
@michaelsproul is the |
No, not yet. The PR hasn't merged to unstable yet |
--exit-epoch
flag to account validator exit
command--exit-epoch
flag to validator-manager
Description
This is a feature request to add an
--exit-epoch
flag to thelighthouse account validator exit
command.This feature allows the user to set a specific epoch for the voluntary exit. It is supported by other validator clients such as teku, lodestar and nimbus.
Version
None.
Present Behaviour
Currently, a user can't specify the desired epoch to exit and the lighthouse VC broadcasts exit message with the current epoch.
Expected Behaviour
The validator client should allow a user to set a desired exit epoch.
Steps to resolve
--exit-epoch
to https://github.com/sigp/lighthouse/blob/stable/account_manager/src/validator/exit.rs.publish_voluntary_exit()
function to use theepoch
provided above (if any).The text was updated successfully, but these errors were encountered: