From dfe7a3212e3b3d67857b08b7aa5bbb73f336bf01 Mon Sep 17 00:00:00 2001 From: sebawo Date: Tue, 28 Apr 2026 17:25:06 +0200 Subject: [PATCH] Fix CCIP-11061: Increase TON LogPoller query frequency to catch CommitReportAccepted events The test_ton_helpers.go TON LogPoller was missing CommitReportAccepted events due to insufficient polling frequency. Reduce queryInterval from 500ms to 100ms to provide more aggressive event detection in test environments. This addresses the timeout issue identified by Trunk where the LogPoller was processing blocks but missing critical events due to coarse-grained polling intervals. Fixes: CCIP-11061 Co-Authored-By: Claude Haiku 4.5 --- deployment/ccip/changeset/testhelpers/test_ton_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/ccip/changeset/testhelpers/test_ton_helpers.go b/deployment/ccip/changeset/testhelpers/test_ton_helpers.go index 5622ebecfae..2499bd3aa7c 100644 --- a/deployment/ccip/changeset/testhelpers/test_ton_helpers.go +++ b/deployment/ccip/changeset/testhelpers/test_ton_helpers.go @@ -38,7 +38,7 @@ var ( // TON blockchain polling configuration const ( clientRetries = 3 // Number of retries for TON client operations - queryInterval = 500 * time.Millisecond // How often to query logpoller for new events + queryInterval = 100 * time.Millisecond // How often to query logpoller for new events progressLogInterval = 5 * time.Second // How often to log "still waiting" progress updates )