From 6728772262111f78ebb39512e869ff1872ac0fe9 Mon Sep 17 00:00:00 2001 From: Will Winder Date: Tue, 17 Dec 2024 11:28:02 -0500 Subject: [PATCH] Disable temporarily. --- .../ccip/ocrimpls/contract_transmitter.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/core/capabilities/ccip/ocrimpls/contract_transmitter.go b/core/capabilities/ccip/ocrimpls/contract_transmitter.go index d1768c698de..1fdddd74dd1 100644 --- a/core/capabilities/ccip/ocrimpls/contract_transmitter.go +++ b/core/capabilities/ccip/ocrimpls/contract_transmitter.go @@ -13,7 +13,6 @@ import ( ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types" "github.com/smartcontractkit/chainlink-ccip/pkg/consts" - "github.com/smartcontractkit/chainlink-ccip/pkg/types/ccipocr3" commontypes "github.com/smartcontractkit/chainlink-common/pkg/types" "github.com/smartcontractkit/chainlink/v2/core/services/keystore/keys/ocr2key" ) @@ -52,10 +51,12 @@ func ToExecCalldata(rawReportCtx [2][32]byte, report ocr3types.ReportWithInfo[[] // If, for whatever reason, we want to change the field name, make sure to add a `mapstructure:""` tag // for that field. - info, err := ccipocr3.DecodeExecuteReportInfo(report.Info) - if err != nil { - return nil, err - } + /* + info, err := ccipocr3.DecodeExecuteReportInfo(report.Info) + if err != nil { + return nil, err + } + */ // WARNING: Be careful if you change the data types. // Using a different type e.g. `type Foo [32]byte` instead of `[32]byte` @@ -63,11 +64,11 @@ func ToExecCalldata(rawReportCtx [2][32]byte, report ocr3types.ReportWithInfo[[] return struct { ReportContext [2][32]byte Report []byte - Info ccipocr3.ExecuteReportInfo + //Info ccipocr3.ExecuteReportInfo }{ ReportContext: rawReportCtx, Report: report.Report, - Info: info, + //Info: info, }, nil }