diff --git a/protocol/statetracker/tx_sender.go b/protocol/statetracker/tx_sender.go index eec554ad38..4049efafc5 100644 --- a/protocol/statetracker/tx_sender.go +++ b/protocol/statetracker/tx_sender.go @@ -222,7 +222,7 @@ func (ts *TxSender) waitForTxCommit(resultData common.TxResultData) (common.TxRe utils.LavaFormatWarning("Timeout waiting for transaction", nil, utils.LogAttr("hash", resultData.Txhash)) return } - ctx, cancel := context.WithTimeout(utils.WithUniqueIdentifier(context.Background(), guid), 3*time.Second) + ctx, cancel := context.WithTimeout(utils.WithUniqueIdentifier(context.Background(), guid), 5*time.Second) result, err := clientCtx.Client.Tx(ctx, resultData.Txhash, false) cancel() if err == nil {