Skip to content

Commit

Permalink
core/capabilities/ccip: use commit plugin w/ state machine (#1321)
Browse files Browse the repository at this point in the history
## Motivation

Use the commit plugin state machine implementation.

## Solution

Use the commit plugin state machine implementation.
  • Loading branch information
makramkd authored Aug 19, 2024
1 parent 5f52675 commit cc8d128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/capabilities/ccip/oraclecreator/inprocess.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/deployment/ccip/deploy_home_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cc8d128

Please sign in to comment.