Skip to content

Commit

Permalink
Merge pull request #19 from informalsystems/ph/increase-timeout
Browse files Browse the repository at this point in the history
Make timeout on chain startup longer
  • Loading branch information
p-offtermatt authored Aug 17, 2023
2 parents fcfd16b + 85d7f76 commit a9215dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cometmock/abci_client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ func (a *AbciClient) SendInitChain(genesisState state.State, genesisDoc *types.G
f := func(client AbciCounterpartyClient) (interface{}, error) {
return client.Client.InitChainSync(*initChainRequest)
}
responses, err := a.callClientsWithTimeout(f, 500*time.Millisecond)
responses, err := a.callClientsWithTimeout(f, 20*time.Second)
if err != nil {
return err
}
Expand Down

0 comments on commit a9215dc

Please sign in to comment.