From e4b3dbaab7e2677eb0b2204e15cf4b098dee5f2d Mon Sep 17 00:00:00 2001 From: chray-zhang Date: Wed, 4 Dec 2024 09:44:35 -0500 Subject: [PATCH] Logging to see address --- integration-tests/common/test_common.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-tests/common/test_common.go b/integration-tests/common/test_common.go index 3905451a..7a6138c0 100644 --- a/integration-tests/common/test_common.go +++ b/integration-tests/common/test_common.go @@ -380,6 +380,7 @@ func (m *OCRv2TestState) ValidateRounds(rounds int, isSoak bool) error { for start := time.Now(); time.Since(start) < m.Common.TestEnvDetails.TestDuration; { m.TestConfig.L.Info().Msg(fmt.Sprintf("Elapsed time: %s, Round wait: %s ", time.Since(start), m.Common.TestEnvDetails.TestDuration)) + m.TestConfig.L.Info().Msg(fmt.Sprintf("fetching Latest Transmission Details from: %s", contractAddress)) res, err2 := m.Clients.OCR2Client.LatestTransmissionDetails(ctx, contractAddress) require.NoError(m.TestConfig.T, err2, "Failed to get latest transmission details") // end condition: enough rounds have occurred