From 51b0712c2426f496139263ed3ee8ee80088e9699 Mon Sep 17 00:00:00 2001 From: Augustus <14297860+augustbleeds@users.noreply.github.com> Date: Fri, 2 Aug 2024 13:01:04 -0400 Subject: [PATCH] bug fix: correct false signal to transmit(#500) --- relayer/pkg/chainlink/ocr2/contract_reader.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relayer/pkg/chainlink/ocr2/contract_reader.go b/relayer/pkg/chainlink/ocr2/contract_reader.go index bc6868f9..2ce41622 100644 --- a/relayer/pkg/chainlink/ocr2/contract_reader.go +++ b/relayer/pkg/chainlink/ocr2/contract_reader.go @@ -116,8 +116,8 @@ func (c *contractReader) LatestRoundRequested( } configDigest = transmissionDetails.Digest - epoch = transmissionDetails.Epoch - round = transmissionDetails.Round + epoch = 0 + round = 0 return }