From 1b8f80b20fc347f118877ecb35ed6315e699ef51 Mon Sep 17 00:00:00 2001 From: vyzaldysanchez Date: Tue, 30 Jul 2024 14:03:42 -0400 Subject: [PATCH] Fixes linter --- core/services/registrysyncer/orm.go | 2 +- core/services/registrysyncer/orm_test.go | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/core/services/registrysyncer/orm.go b/core/services/registrysyncer/orm.go index 486dc273301..007cc7125e9 100644 --- a/core/services/registrysyncer/orm.go +++ b/core/services/registrysyncer/orm.go @@ -9,9 +9,9 @@ import ( "math/big" "strconv" - "github.com/smartcontractkit/chainlink-common/pkg/capabilities" "github.com/smartcontractkit/libocr/ragep2p/types" + "github.com/smartcontractkit/chainlink-common/pkg/capabilities" "github.com/smartcontractkit/chainlink-common/pkg/sqlutil" kcr "github.com/smartcontractkit/chainlink/v2/core/gethwrappers/keystone/generated/capabilities_registry" diff --git a/core/services/registrysyncer/orm_test.go b/core/services/registrysyncer/orm_test.go index 0cca51979dd..412ee2fa8d8 100644 --- a/core/services/registrysyncer/orm_test.go +++ b/core/services/registrysyncer/orm_test.go @@ -7,12 +7,14 @@ import ( "testing" "time" - "github.com/smartcontractkit/chainlink-common/pkg/capabilities" - "github.com/smartcontractkit/chainlink-common/pkg/values" - ragetypes "github.com/smartcontractkit/libocr/ragep2p/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + ragetypes "github.com/smartcontractkit/libocr/ragep2p/types" + + "github.com/smartcontractkit/chainlink-common/pkg/capabilities" + "github.com/smartcontractkit/chainlink-common/pkg/values" + kcr "github.com/smartcontractkit/chainlink/v2/core/gethwrappers/keystone/generated/capabilities_registry" "github.com/smartcontractkit/chainlink/v2/core/internal/testutils" "github.com/smartcontractkit/chainlink/v2/core/internal/testutils/pgtest"