-
Notifications
You must be signed in to change notification settings - Fork 784
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
Fix proposer-nodes
cli flag name
#6125
Conversation
Note this was tested on a custom built image. I can't reproduce the crash using an image built using our Dockerfile, so it could be that the image wasn't built with |
I can't reproduce the crash, even building without the lockfile ( Regardless, I think we should fix it |
Nope I wasn’t using the flag. Hmm really weird! |
When did you build the image? I notice there were two clap versions released really close together: https://crates.io/crates/clap/versions |
Can we add a test in |
I used this image: built by kev for this issue: I’ve reach out to him and asked whether this was produced with our local testnet scripts. |
Good idea, I’ll add a test! |
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.
Nice
@mergify queue |
✅ The pull request has been merged automaticallyThe pull request has been merged automatically at 549035d |
Issue Addressed
Getting this error while trying to run validator client locally (with a custom built docker image) and it shuts down immediately with:
This PR fixes the
--proposer-node
flag parsing to use the correct arg name.lighthouse/validator_client/src/cli.rs
Lines 33 to 35 in 947e2e8