From d3ceb94a77f4de40d3aceccfaa1e6c1ea1cd32ad Mon Sep 17 00:00:00 2001 From: Sai Kumar <17549398+gsk967@users.noreply.github.com> Date: Wed, 14 Aug 2024 18:38:53 +0530 Subject: [PATCH] fix: fix the block time in tests (#2592) --- app/test_helpers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test_helpers.go b/app/test_helpers.go index aef0119d17..ad74ce48bf 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -307,6 +307,7 @@ func IntegrationTestNetworkConfig() network.Config { cfg.GenesisState = appGenState cfg.BondDenom = params.BondDenom cfg.MinGasPrices = params.ProtocolMinGasPrice.String() + cfg.TimeoutCommit = time.Second * 1 return cfg }