@@ -1241,6 +1241,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
12411241 this value may increase resource consumption. Reducing the value \
12421242 may result in decreased resource usage and diminished performance. The \
12431243 default value is the number of logical CPU cores on the host.")
1244+ . hidden ( true )
12441245 . takes_value ( true )
12451246 )
12461247 . arg (
@@ -1251,6 +1252,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
12511252 Higher values may prevent messages from being dropped while lower values \
12521253 may help protect the node from becoming overwhelmed.")
12531254 . default_value ( "16384" )
1255+ . hidden ( true )
12541256 . takes_value ( true )
12551257 )
12561258 . arg (
@@ -1260,6 +1262,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
12601262 . help ( "Specifies the length of the queue for messages requiring delayed processing. \
12611263 Higher values may prevent messages from being dropped while lower values \
12621264 may help protect the node from becoming overwhelmed.")
1265+ . hidden ( true )
12631266 . default_value ( "12288" )
12641267 . takes_value ( true )
12651268 )
@@ -1270,6 +1273,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
12701273 . help ( "Specifies the number of gossip attestations in a signature verification batch. \
12711274 Higher values may reduce CPU usage in a healthy network whilst lower values may \
12721275 increase CPU usage in an unhealthy or hostile network.")
1276+ . hidden ( true )
12731277 . default_value ( "64" )
12741278 . takes_value ( true )
12751279 )
@@ -1281,6 +1285,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
12811285 verification batch. \
12821286 Higher values may reduce CPU usage in a healthy network while lower values may \
12831287 increase CPU usage in an unhealthy or hostile network.")
1288+ . hidden ( true )
12841289 . default_value ( "64" )
12851290 . takes_value ( true )
12861291 )
0 commit comments