mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 03:31:45 +00:00
Enable count-unrealized by default (#3389)
## Issue Addressed Enable https://github.com/sigp/lighthouse/pull/3322 by default on all networks. The feature can be opted out of using `--count-unrealized=false` (the CLI flag is updated to take a parameter).
This commit is contained in:
@@ -752,8 +752,9 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
|
||||
Arg::with_name("count-unrealized")
|
||||
.long("count-unrealized")
|
||||
.hidden(true)
|
||||
.help("**EXPERIMENTAL** Enables an alternative, potentially more performant FFG \
|
||||
vote tracking method.")
|
||||
.takes_value(false)
|
||||
.help("Enables an alternative, potentially more performant FFG \
|
||||
vote tracking method.")
|
||||
.takes_value(true)
|
||||
.default_value("true")
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user