This commit is contained in:
William Banfield
2022-01-21 13:43:05 -05:00
parent 9e6e03926d
commit 15ecd7ea66
2 changed files with 3 additions and 3 deletions

View File

@@ -726,7 +726,7 @@ func TestReactorValidatorSetChanges(t *testing.T) {
)
t.Cleanup(cleanup)
rts := setup(ctx, t, nPeers, states, 200) // buffer must be large enough to not deadlock
rts := setup(ctx, t, nPeers, states, 100) // buffer must be large enough to not deadlock
for _, reactor := range rts.reactors {
state := reactor.state.GetState()

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.Millisecond,
MessageDelay: 500 * time.Millisecond,
Precision: 10 * time.Minute,
MessageDelay: 500 * time.Minute,
}
}