Browse Source

params: increase default synchrony params (#7704)

pull/7709/head
William Banfield 3 years ago
committed by GitHub
parent
commit
b37c10c324
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      types/params.go

+ 1
- 1
types/params.go View File

@ -132,7 +132,7 @@ func DefaultSynchronyParams() SynchronyParams {
// https://github.com/tendermint/tendermint/issues/7202 // https://github.com/tendermint/tendermint/issues/7202
return SynchronyParams{ return SynchronyParams{
Precision: 500 * time.Millisecond, Precision: 500 * time.Millisecond,
MessageDelay: 2 * time.Second,
MessageDelay: 3 * time.Second,
} }
} }


Loading…
Cancel
Save