Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/org/tron/core/config/Parameter.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface ChainConstant {
int PRIVATE_KEY_LENGTH = 64;
int MAX_ACTIVE_WITNESS_NUM = 15;
int TRXS_SIZE = 2_000_000; // < 2MiB
int BLOCK_PRODUCED_INTERVAL = 5000; //ms,produce block period, must be divisible by 60. millisecond
int BLOCK_PRODUCED_INTERVAL = 1000; //ms,produce block period, must be divisible by 60. millisecond
long CLOCK_MAX_DELAY = 3600 * 1000; //ms
long BATCH_FETCH_RESPONSE_SIZE = 1000; //for each inventory message from peer, the max count of fetch inv message
}
Expand Down