@@ -1241,6 +1241,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
1241
1241
this value may increase resource consumption. Reducing the value \
1242
1242
may result in decreased resource usage and diminished performance. The \
1243
1243
default value is the number of logical CPU cores on the host.")
1244
+ . hidden ( true )
1244
1245
. takes_value ( true )
1245
1246
)
1246
1247
. arg (
@@ -1251,6 +1252,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
1251
1252
Higher values may prevent messages from being dropped while lower values \
1252
1253
may help protect the node from becoming overwhelmed.")
1253
1254
. default_value ( "16384" )
1255
+ . hidden ( true )
1254
1256
. takes_value ( true )
1255
1257
)
1256
1258
. arg (
@@ -1260,6 +1262,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
1260
1262
. help ( "Specifies the length of the queue for messages requiring delayed processing. \
1261
1263
Higher values may prevent messages from being dropped while lower values \
1262
1264
may help protect the node from becoming overwhelmed.")
1265
+ . hidden ( true )
1263
1266
. default_value ( "12288" )
1264
1267
. takes_value ( true )
1265
1268
)
@@ -1270,6 +1273,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
1270
1273
. help ( "Specifies the number of gossip attestations in a signature verification batch. \
1271
1274
Higher values may reduce CPU usage in a healthy network whilst lower values may \
1272
1275
increase CPU usage in an unhealthy or hostile network.")
1276
+ . hidden ( true )
1273
1277
. default_value ( "64" )
1274
1278
. takes_value ( true )
1275
1279
)
@@ -1281,6 +1285,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
1281
1285
verification batch. \
1282
1286
Higher values may reduce CPU usage in a healthy network while lower values may \
1283
1287
increase CPU usage in an unhealthy or hostile network.")
1288
+ . hidden ( true )
1284
1289
. default_value ( "64" )
1285
1290
. takes_value ( true )
1286
1291
)
0 commit comments