-
Notifications
You must be signed in to change notification settings - Fork 886
Migrate validator client to clap derive #6300
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
Merged
mergify
merged 53 commits into
sigp:unstable
from
eserilev:clap-derive-validator-manager
Feb 3, 2025
Merged
Changes from all commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
4513851
add derive cli definitions
eserilev bea2b48
update
eserilev 3768588
change cli
eserilev 1e19018
fix test
eserilev 1a9ad30
cli docs
eserilev a80452b
fmt
eserilev 99007eb
fix lint issue
eserilev 5f4bf78
fix flag name
eserilev a944744
fix cli
eserilev 9e7bed2
Merge branch 'unstable' of https://github.com/sigp/lighthouse into cl…
eserilev 49da4e9
reintroduce deprecated flag
eserilev e8b7996
fix test
eserilev d986f84
cli fix
eserilev c90d977
fix test
eserilev 5e96273
fix another test
eserilev e98f0d9
Merge branch 'unstable' of https://github.com/sigp/lighthouse into cl…
eserilev 461cc22
fix test
eserilev 4344953
fix test
eserilev 9117690
linting
eserilev 41e0c1a
fix validator crash
eserilev ea322d2
add additional test
eserilev 8d3c91e
fix vc
eserilev 1fc4429
resolve merge conflicts
eserilev d0929b9
Fix test
eserilev 68fb7bd
Lint
eserilev c016661
Fix tests
eserilev e484019
fix
eserilev f4fcb77
fix
eserilev ef9165b
Fix tests
eserilev bb06e14
Fix tests
eserilev a273157
Fix tests
eserilev 09920aa
resolve conflicts
eserilev 63b8d60
fix
eserilev 9efccb0
fix
eserilev 26708ac
Merge branch 'unstable' of https://github.com/sigp/lighthouse into cl…
eserilev 80bb142
Fix tests
eserilev 3901113
fix tests
eserilev 7ae2e2a
make gas limit config value non optional
eserilev 258d96f
fix test
eserilev 54a2d44
Merge branch 'clap-derive-validator-manager' of https://github.com/es…
eserilev cb8125e
Merge branch 'unstable' of https://github.com/sigp/lighthouse into cl…
eserilev 02e305a
remove non global help flags, and other misc fixes
eserilev ee8a519
liniting
eserilev 74ce49b
resolve merge conflicts
eserilev 28fa46b
fix test
eserilev 2b21122
Merge branch 'unstable' of https://github.com/sigp/lighthouse into cl…
eserilev 71eed11
resolve merge conflicts
eserilev 9620ff1
run make cli
eserilev 0d56112
Cargo sort
eserilev f615817
Merge branch 'unstable' of https://github.com/sigp/lighthouse into cl…
eserilev 9eca0e6
FMT strikes again
eserilev 9619994
resolve conflicts
eserilev 0fa70ff
Merge branch 'unstable' into clap-derive-validator-manager
eserilev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
use clap::Parser; | ||
use database_manager::cli::DatabaseManager; | ||
use serde::{Deserialize, Serialize}; | ||
use validator_client::cli::ValidatorClient; | ||
|
||
#[derive(Parser, Clone, Deserialize, Serialize, Debug)] | ||
pub enum LighthouseSubcommands { | ||
#[clap(name = "database_manager")] | ||
DatabaseManager(DatabaseManager), | ||
DatabaseManager(Box<DatabaseManager>), | ||
#[clap(name = "validator_client")] | ||
ValidatorClient(Box<ValidatorClient>), | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.