Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datastore/changesets/delete_address_ref.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
"github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_address_ref_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
cldfoperations "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

func TestDeleteAddressRefChangeset_VerifyPreconditions(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_chain_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
"github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_chain_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
cldfoperations "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

func TestDeleteChainMetadataChangeset_VerifyPreconditions(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_contract_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
"github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_contract_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
cldfoperations "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

func TestDeleteContractMetadataChangeset_VerifyPreconditions(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
datastoreseqs "github.com/smartcontractkit/cld-changesets/datastore/sequences"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/changesets/delete_resources_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
cldfoperations "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

func TestDeleteResourcesChangeset_VerifyPreconditions(t *testing.T) {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

cldfdatastore "github.com/smartcontractkit/chainlink-deployments-framework/datastore"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

func TestChainMetadataKey_JSONRoundTrip(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion datastore/operations/delete_address_ref.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
cldfdatastore "github.com/smartcontractkit/chainlink-deployments-framework/datastore"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

// DeleteAddressRefDeps holds non-serializable dependencies for the DeleteAddressRefOp operation.
Expand Down
2 changes: 1 addition & 1 deletion datastore/operations/delete_address_ref_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
"github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/operations/delete_chain_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
cldfdatastore "github.com/smartcontractkit/chainlink-deployments-framework/datastore"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

// DeleteChainMetadataDeps holds non-serializable dependencies for the DeleteChainMetadataOp operation.
Expand Down
2 changes: 1 addition & 1 deletion datastore/operations/delete_chain_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
"github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/operations/delete_contract_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
cldfdatastore "github.com/smartcontractkit/chainlink-deployments-framework/datastore"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

// DeleteContractMetadataDeps holds non-serializable dependencies for the DeleteContractMetadataOp operation.
Expand Down
2 changes: 1 addition & 1 deletion datastore/operations/delete_contract_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
"github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/sequences/delete_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
cldfdatastore "github.com/smartcontractkit/chainlink-deployments-framework/datastore"
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
datastoreops "github.com/smartcontractkit/cld-changesets/datastore/operations"
)

Expand Down
2 changes: 1 addition & 1 deletion datastore/sequences/delete_resources_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
cldfops "github.com/smartcontractkit/chainlink-deployments-framework/operations"
cldflogger "github.com/smartcontractkit/chainlink-deployments-framework/pkg/logger"

"github.com/smartcontractkit/cld-changesets/datastore/internal/keys"
"github.com/smartcontractkit/cld-changesets/datastore/keys"
)

func TestDeleteResourcesSeq(t *testing.T) {
Expand Down
Loading