increase timeout ticker size

This commit is contained in:
William Banfield
2022-01-21 12:00:20 -05:00
parent 5d0671e95f
commit 6e88c00366

View File

@@ -893,7 +893,7 @@ func makeGenesisState(ctx context.Context, t *testing.T, cfg *config.Config, arg
func newMockTickerFunc(onlyOnce bool) func() TimeoutTicker {
return func() TimeoutTicker {
return &mockTicker{
c: make(chan timeoutInfo, 10),
c: make(chan timeoutInfo, 100),
onlyOnce: onlyOnce,
}
}