Skip to content

Commit 2be3fd5

Browse files
authored
Merge pull request #648 from tronprotocol/feature/change_interval
change block interval from 5000 to 1000
2 parents d3d598a + fb15b78 commit 2be3fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/tron/core/config/Parameter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface ChainConstant {
1313
int PRIVATE_KEY_LENGTH = 64;
1414
int MAX_ACTIVE_WITNESS_NUM = 15;
1515
int TRXS_SIZE = 2_000_000; // < 2MiB
16-
int BLOCK_PRODUCED_INTERVAL = 5000; //ms,produce block period, must be divisible by 60. millisecond
16+
int BLOCK_PRODUCED_INTERVAL = 1000; //ms,produce block period, must be divisible by 60. millisecond
1717
long CLOCK_MAX_DELAY = 3600 * 1000; //ms
1818
long BATCH_FETCH_RESPONSE_SIZE = 1000; //for each inventory message from peer, the max count of fetch inv message
1919
}

0 commit comments

Comments
 (0)