Skip to content
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

Added required --force-bls-withdrawal-credentials description to --disable-deposits usage #6436

Merged
merged 9 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion book/src/help_vm_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,9 @@ Flags:
When provided don't generate the deposits JSON file that is commonly
used for submitting validator deposits via a web UI. Using this flag
will save several seconds per validator if the user has an alternate
strategy for submitting deposits.
strategy for submitting deposits. If used, the
--force-bls-withdrawal-credentials is also required to ensure users
are aware that an --eth1-withdrawal-address is not set.
--disable-log-timestamp
If present, do not include timestamps in logging output.
--disable-malloc-tuning
Expand Down
2 changes: 1 addition & 1 deletion scripts/cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ write_to_file() {
printf "# %s\n\n\`\`\`\n%s\n\`\`\`" "$program" "$cmd" > "$file"

# Adjust the width of the help text and append to the end of file
sed -i -e '$a\'$'\n''\n''<style> .content main {max-width:88%;} </style>' "$file"
printf "\n\n%s\n" "<style> .content main {max-width:88%;} </style>" >> "$file"
}

CMD=./target/release/lighthouse
Expand Down
4 changes: 3 additions & 1 deletion validator_manager/src/create_validators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ pub fn cli_app() -> Command {
"When provided don't generate the deposits JSON file that is \
commonly used for submitting validator deposits via a web UI. \
Using this flag will save several seconds per validator if the \
user has an alternate strategy for submitting deposits.",
user has an alternate strategy for submitting deposits. \
If used, the --force-bls-withdrawal-credentials is also required \
to ensure users are aware that an --eth1-withdrawal-address is not set.",
)
.action(ArgAction::SetTrue)
.help_heading(FLAG_HEADER)
Expand Down
Loading