mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-12 05:50:07 +00:00
Adds colour help to bn and vc subcommands (#1811)
Adds coloured help to the bn and vc subcommands
This commit is contained in:
parent
2c7f362908
commit
64c5899d25
@ -5,6 +5,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
|
||||
.visible_aliases(&["b", "bn", "beacon"])
|
||||
.version(crate_version!())
|
||||
.author("Sigma Prime <contact@sigmaprime.io>")
|
||||
.setting(clap::AppSettings::ColoredHelp)
|
||||
.about("The primary component which connects to the Ethereum 2.0 P2P network and \
|
||||
downloads, verifies and stores blocks. Provides a HTTP API for querying \
|
||||
the beacon chain and publishing messages to the network.")
|
||||
|
@ -4,6 +4,7 @@ use clap::{App, Arg};
|
||||
pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
|
||||
App::new("validator_client")
|
||||
.visible_aliases(&["v", "vc", "validator"])
|
||||
.setting(clap::AppSettings::ColoredHelp)
|
||||
.about(
|
||||
"When connected to a beacon node, performs the duties of a staked \
|
||||
validator (e.g., proposing blocks and attestations).",
|
||||
|
Loading…
Reference in New Issue
Block a user