diff --git a/core/services/relay/evm/ocr3/contract_transmitter_test.go b/core/services/relay/evm/ocr3/contract_transmitter_test.go index d950a8808b0..2906447cf04 100644 --- a/core/services/relay/evm/ocr3/contract_transmitter_test.go +++ b/core/services/relay/evm/ocr3/contract_transmitter_test.go @@ -14,6 +14,10 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "github.com/smartcontractkit/libocr/commontypes" + "github.com/smartcontractkit/libocr/offchainreporting2plus/ocr3types" + ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types" + "github.com/smartcontractkit/chainlink/v2/core/chains/evm/assets" "github.com/smartcontractkit/chainlink/v2/core/chains/evm/client" logpollermocks "github.com/smartcontractkit/chainlink/v2/core/chains/evm/logpoller/mocks" @@ -24,9 +28,6 @@ import ( "github.com/smartcontractkit/chainlink/v2/core/services/keystore/chaintype" "github.com/smartcontractkit/chainlink/v2/core/services/keystore/keys/ocr2key" "github.com/smartcontractkit/chainlink/v2/core/services/relay/evm/ocr3" - "github.com/smartcontractkit/libocr/commontypes" - "github.com/smartcontractkit/libocr/offchainreporting2plus/ocr3types" - ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types" ) type testUniverse[RI any] struct { diff --git a/core/services/relay/evm/ocr3/multichain_config_tracker_test.go b/core/services/relay/evm/ocr3/multichain_config_tracker_test.go index 6112554e3c8..1b9c258d218 100644 --- a/core/services/relay/evm/ocr3/multichain_config_tracker_test.go +++ b/core/services/relay/evm/ocr3/multichain_config_tracker_test.go @@ -7,6 +7,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/jmoiron/sqlx" + ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types" + "github.com/stretchr/testify/require" + evmclient "github.com/smartcontractkit/chainlink/v2/core/chains/evm/client" "github.com/smartcontractkit/chainlink/v2/core/chains/evm/logpoller" "github.com/smartcontractkit/chainlink/v2/core/gethwrappers/shared/generated/no_op_ocr3" @@ -16,8 +19,6 @@ import ( "github.com/smartcontractkit/chainlink/v2/core/logger" "github.com/smartcontractkit/chainlink/v2/core/services/relay" "github.com/smartcontractkit/chainlink/v2/core/services/relay/evm/ocr3" - ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types" - "github.com/stretchr/testify/require" ) func setupLogPoller[RI any](t *testing.T, db *sqlx.DB, bs *bundlesAndSigners) (logpoller.LogPoller, testUniverse[RI]) { diff --git a/core/services/relay/evm/ocr3/multichain_transmitter.go b/core/services/relay/evm/ocr3/multichain_transmitter.go index b802ca88aaf..9ba589eaeac 100644 --- a/core/services/relay/evm/ocr3/multichain_transmitter.go +++ b/core/services/relay/evm/ocr3/multichain_transmitter.go @@ -4,10 +4,11 @@ import ( "context" "fmt" - "github.com/smartcontractkit/chainlink/v2/core/chains/evm/logpoller" - "github.com/smartcontractkit/chainlink/v2/core/logger" "github.com/smartcontractkit/libocr/offchainreporting2plus/ocr3types" "github.com/smartcontractkit/libocr/offchainreporting2plus/types" + + "github.com/smartcontractkit/chainlink/v2/core/chains/evm/logpoller" + "github.com/smartcontractkit/chainlink/v2/core/logger" ) type MultichainMeta interface {