Skip to content

Commit

Permalink
Fix CLI flag
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jul 18, 2023
1 parent 63de59b commit a9a478e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon_node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
)
.arg(
Arg::with_name("beacon-processor-attestation-batch-size")
.long("beacon-processor-gossip-attestation-batch")
.long("beacon-processor-attestation-batch-size")
.value_name("INTEGER")
.help("Specifies the number of gossip attestations in a signature verification batch. \
Higher values may reduce CPU usage in a healthy network whilst lower values may \
Expand All @@ -1194,7 +1194,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
)
.arg(
Arg::with_name("beacon-processor-aggregate-batch-size")
.long("beacon-processor-gossip-aggregate-batch")
.long("beacon-processor-aggregate-batch-size")
.value_name("INTEGER")
.help("Specifies the number of gossip aggregate attestations in a signature \
verification batch. \
Expand Down

0 comments on commit a9a478e

Please sign in to comment.