From cc8d12878e35e3ded1b81030cbf949676fee689a Mon Sep 17 00:00:00 2001 From: Makram Date: Mon, 19 Aug 2024 17:18:33 +0300 Subject: [PATCH] core/capabilities/ccip: use commit plugin w/ state machine (#1321) ## Motivation Use the commit plugin state machine implementation. ## Solution Use the commit plugin state machine implementation. --- core/capabilities/ccip/oraclecreator/inprocess.go | 2 +- integration-tests/deployment/ccip/deploy_home_chain.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/capabilities/ccip/oraclecreator/inprocess.go b/core/capabilities/ccip/oraclecreator/inprocess.go index fa74c1b0ea..266ffc2d77 100644 --- a/core/capabilities/ccip/oraclecreator/inprocess.go +++ b/core/capabilities/ccip/oraclecreator/inprocess.go @@ -28,7 +28,7 @@ import ( cciptypes "github.com/smartcontractkit/chainlink-common/pkg/types/ccipocr3" - commitocr3 "github.com/smartcontractkit/chainlink-ccip/commit" + commitocr3 "github.com/smartcontractkit/chainlink-ccip/commitrmnocb" execocr3 "github.com/smartcontractkit/chainlink-ccip/execute" ccipreaderpkg "github.com/smartcontractkit/chainlink-ccip/pkg/reader" diff --git a/integration-tests/deployment/ccip/deploy_home_chain.go b/integration-tests/deployment/ccip/deploy_home_chain.go index ad76dbf892..a79fee6678 100644 --- a/integration-tests/deployment/ccip/deploy_home_chain.go +++ b/integration-tests/deployment/ccip/deploy_home_chain.go @@ -283,7 +283,7 @@ func AddDON( transmittersBytes := make([][]byte, len(transmitters)) for i, transmitter := range transmitters { parsed, err2 := common.ParseHexOrString(string(transmitter)) - if err != nil { + if err2 != nil { return err2 } transmittersBytes[i] = parsed