Reduce wiggle to 100ms.

This commit is contained in:
Kartik Chopra 2024-03-11 12:31:47 -04:00
parent 2def2df3e1
commit 0d543684fa

View file

@ -53,7 +53,7 @@ const (
inmemorySnapshots = 128 // Number of recent vote snapshots to keep in memory
inmemorySignatures = 4096 // Number of recent block signatures to keep in memory
wiggleTime = 500 * time.Millisecond // Random delay (per signer) to allow concurrent signers
wiggleTime = 100 * time.Millisecond // Random delay (per signer) to allow concurrent signers
)
// Clique proof-of-authority protocol constants.