We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cbcf6a commit 7b33166Copy full SHA for 7b33166
2 files changed
common/src/main/java/org/tron/common/parameter/CommonParameter.java
@@ -461,7 +461,7 @@ public class CommonParameter {
461
public int jsonRpcMaxBlockFilterNum = 50000;
462
@Getter
463
@Setter
464
- public int jsonRpcMaxBatchSize = 1;
+ public int jsonRpcMaxBatchSize = 10;
465
466
467
public int jsonRpcMaxResponseSize = 25 * 1024 * 1024;
framework/src/main/resources/config.conf
@@ -378,7 +378,7 @@ node {
378
# Allowed maximum number for blockFilter
379
maxBlockFilterNum = 50000
380
# Allowed batch size
381
- maxBatchSize = 1
+ maxBatchSize = 10
382
# Allowed max response byte size
383
maxResponseSize = 26214400 // 25 MB = 25 * 1024 * 1024 B
384
# Allowed max request processing time in seconds
0 commit comments