Skip to content

Commit

Permalink
Shrink proposerVM minRecentlyAcceptedWindowSize to 0 (#3431)
Browse files Browse the repository at this point in the history
  • Loading branch information
iansuvak authored Oct 3, 2024
1 parent 90304ac commit f45245a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vms/platformvm/validators/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
const (
validatorSetsCacheSize = 64
maxRecentlyAcceptedWindowSize = 64
minRecentlyAcceptedWindowSize = 16
recentlyAcceptedWindowTTL = 2 * time.Minute
minRecentlyAcceptedWindowSize = 0
recentlyAcceptedWindowTTL = 30 * time.Second
)

var (
Expand Down

0 comments on commit f45245a

Please sign in to comment.