mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-31 21:27:12 +00:00
Enable partial data columns by default on Hoodi and Sepolia (#9343)
Enable partial data columns by default on Hoodi and Sepolia. Co-Authored-By: Daniel Knopik <daniel@dknopik.de>
This commit is contained in:
@@ -674,11 +674,22 @@ pub fn cli_app() -> Command {
|
||||
Arg::new("enable-partial-columns")
|
||||
.long("enable-partial-columns")
|
||||
.help("Enable partial messages for data columns. This can reduce the amount of \
|
||||
data sent over the network.")
|
||||
data sent over the network. Enabled by default on Hoodi and Sepolia; use \
|
||||
--disable-partial-columns to opt out.")
|
||||
.action(ArgAction::SetTrue)
|
||||
.help_heading(FLAG_HEADER)
|
||||
.display_order(0)
|
||||
)
|
||||
.arg(
|
||||
Arg::new("disable-partial-columns")
|
||||
.long("disable-partial-columns")
|
||||
.help("Disable partial messages for data columns. Use this on Hoodi or Sepolia \
|
||||
to opt out of the default-enabled behavior.")
|
||||
.action(ArgAction::SetTrue)
|
||||
.conflicts_with("enable-partial-columns")
|
||||
.help_heading(FLAG_HEADER)
|
||||
.display_order(0)
|
||||
)
|
||||
/*
|
||||
* Monitoring metrics
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user