Skip to content

Commit

Permalink
Update pull gossip params to be less bursty (ava-labs#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph authored and oxbee committed Nov 6, 2024
1 parent d4fcd44 commit b99b8d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/evm/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (
defaultContinuousProfilerFrequency = 15 * time.Minute
defaultContinuousProfilerMaxFiles = 5
defaultPushGossipFrequency = 100 * time.Millisecond
defaultPullGossipFrequency = 10 * time.Second
defaultPullGossipFrequency = 1 * time.Second
defaultTxRegossipFrequency = 10 * time.Second
defaultOfflinePruningBloomFilterSize uint64 = 512 // Default size (MB) for the offline pruner to use
defaultLogLevel = "info"
Expand Down
2 changes: 1 addition & 1 deletion plugin/evm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const (
maxValidatorSetStaleness = time.Minute
txGossipThrottlingPeriod = 10 * time.Second
txGossipThrottlingLimit = 2
txGossipPollSize = 10
txGossipPollSize = 1
)

// Define the API endpoints for the VM
Expand Down

0 comments on commit b99b8d4

Please sign in to comment.