-
Notifications
You must be signed in to change notification settings - Fork 741
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
Migrate validator client to clap derive #6300
Open
eserilev
wants to merge
37
commits into
sigp:unstable
Choose a base branch
from
eserilev:clap-derive-validator-manager
base: unstable
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
37 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 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 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
This file contains 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 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 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 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 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 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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a functional difference between
None
and30_000_000
here? Might be worth now renaming this test togas_limit_flag_default
to better match the naming scheme.