move time calculation to earlier in the pipeline

This commit is contained in:
William Banfield
2022-01-21 15:27:55 -05:00
parent 15ecd7ea66
commit 6c39dcdba7
6 changed files with 36 additions and 34 deletions

View File

@@ -129,8 +129,8 @@ func DefaultSynchronyParams() SynchronyParams {
// TODO(@wbanfield): Determine experimental values for these defaults
// https://github.com/tendermint/tendermint/issues/7202
return SynchronyParams{
Precision: 10 * time.Minute,
MessageDelay: 500 * time.Minute,
Precision: 10 * time.Millisecond,
MessageDelay: 500 * time.Millisecond,
}
}