From fd43d41ce9bdfe250a5d1a7ec3c365a425e70cbb Mon Sep 17 00:00:00 2001 From: Bolek Kulbabinski <1416262+bolekk@users.noreply.github.com> Date: Mon, 6 Jul 2026 19:30:37 -0700 Subject: [PATCH] [tiny] Mark outcomePruningThreshold as unused in logs --- consensus/oracle/plugin/factory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/oracle/plugin/factory.go b/consensus/oracle/plugin/factory.go index ea487e83e..3d75a2895 100644 --- a/consensus/oracle/plugin/factory.go +++ b/consensus/oracle/plugin/factory.go @@ -123,7 +123,7 @@ func (o *factory) NewReportingPlugin(_ context.Context, config ocr3types.Reporti "maxReportLengthBytes", configProto.MaxReportLengthBytes, "maxReportCount", configProto.MaxReportCount, "maxBatchSize(UNUSED)", configProto.MaxBatchSize, // UNUSED - batch size is now determined by max byte length limits - "outcomePruningThreshold", configProto.OutcomePruningThreshold, + "outcomePruningThreshold(UNUSED)", configProto.OutcomePruningThreshold, // UNUSED - pruning is now based on historicalOutcomeExpirySeqNrSpan "requestTimeout", configProto.RequestTimeout.AsDuration(), "historicalOutcomeExpirySeqNrSpan", configProto.HistoricalOutcomeExpirySeqNrSpan, // top-level OCR config fields (ocr3types.ReportingPluginConfig)