We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a08ec0 commit 1e3e385Copy full SHA for 1e3e385
2 files changed
framework/src/main/java/org/tron/core/config/args/Args.java
@@ -146,7 +146,7 @@ public static void clearParam() {
146
PARAMETER.nodeEnableIpv6 = false;
147
PARAMETER.dnsTreeUrls = new ArrayList<>();
148
PARAMETER.dnsPublishConfig = null;
149
- PARAMETER.syncFetchBatchNum = 1000;
+ PARAMETER.syncFetchBatchNum = 2000;
150
PARAMETER.rpcPort = 0;
151
PARAMETER.rpcOnSolidityPort = 0;
152
PARAMETER.rpcOnPBFTPort = 0;
framework/src/main/java/org/tron/core/net/service/sync/SyncService.java
@@ -251,7 +251,7 @@ private synchronized void handleSyncBlock() {
251
}
252
253
final boolean[] isProcessed = {true};
254
- long solidNum = tronNetDelegate.getSolidBlockId().getNum();;
+ long solidNum = tronNetDelegate.getSolidBlockId().getNum();
255
256
while (isProcessed[0]) {
257
0 commit comments