Skip to content

Commit

Permalink
fix: increase test times
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-forbes committed Oct 18, 2022
1 parent 31efe9c commit 277062b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/test/block_size_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func TestIntegrationTestSuite(t *testing.T) {
cfg.EnableTMLogging = false
cfg.MinGasPrices = "0ucls"
cfg.NumValidators = 1
cfg.TimeoutCommit = time.Millisecond * 200
cfg.TimeoutCommit = time.Millisecond * 400
suite.Run(t, NewIntegrationTestSuite(cfg))
}

Expand Down
2 changes: 1 addition & 1 deletion testutil/testnode/full_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func DefaultParams() *tmproto.ConsensusParams {

func DefaultTendermintConfig() *config.Config {
tmCfg := config.DefaultConfig()
tmCfg.Consensus.TimeoutCommit = time.Millisecond * 100
tmCfg.Consensus.TimeoutCommit = time.Millisecond * 200
tmCfg.Mempool.MaxTxBytes = 22020096 // 21MB
return tmCfg
}

0 comments on commit 277062b

Please sign in to comment.