Skip to content

Commit

Permalink
test: lower timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosNicolau committed Oct 18, 2024
1 parent 32a57fa commit 339d84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/chainio/avs_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (w *AvsWriter) SendAggregatedResponse(batchIdentifierHash [32]byte, batchMe
return nil, err
}
}
ctx, cancel := context.WithTimeout(context.Background(), time.Second*1)
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond*200)
defer cancel()
receipt, err := utils.WaitForTransactionReceipt(w.Client, ctx, tx.Hash())

Expand Down

0 comments on commit 339d84f

Please sign in to comment.