From 98768a33506943270a71e47b23858d9b5be2cb63 Mon Sep 17 00:00:00 2001 From: pavel-raykov Date: Fri, 17 Jan 2025 21:46:03 +0100 Subject: [PATCH] Minor --- core/chains/evm/txm/storage/inmemory_store.go | 4 +--- core/chains/evm/txm/storage/inmemory_store_test.go | 2 +- core/chains/evm/txm/types/transaction.go | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/core/chains/evm/txm/storage/inmemory_store.go b/core/chains/evm/txm/storage/inmemory_store.go index 57217913d76..e400a4d5370 100644 --- a/core/chains/evm/txm/storage/inmemory_store.go +++ b/core/chains/evm/txm/storage/inmemory_store.go @@ -11,9 +11,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/smartcontractkit/chainlink-common/pkg/logger" - - txmgr "github.com/smartcontractkit/chainlink/v2/common/txmgr" - + "github.com/smartcontractkit/chainlink-framework/chains/txmgr" "github.com/smartcontractkit/chainlink/v2/core/chains/evm/txm/types" ) diff --git a/core/chains/evm/txm/storage/inmemory_store_test.go b/core/chains/evm/txm/storage/inmemory_store_test.go index 226cf284bba..058b5dc9044 100644 --- a/core/chains/evm/txm/storage/inmemory_store_test.go +++ b/core/chains/evm/txm/storage/inmemory_store_test.go @@ -13,7 +13,7 @@ import ( "github.com/smartcontractkit/chainlink-common/pkg/logger" "github.com/smartcontractkit/chainlink-common/pkg/utils/tests" - "github.com/smartcontractkit/chainlink/v2/common/txmgr" + "github.com/smartcontractkit/chainlink-framework/chains/txmgr" "github.com/smartcontractkit/chainlink/v2/core/chains/evm/testutils" "github.com/smartcontractkit/chainlink/v2/core/chains/evm/txm/types" ) diff --git a/core/chains/evm/txm/types/transaction.go b/core/chains/evm/txm/types/transaction.go index 1d1104545d4..f0f46017301 100644 --- a/core/chains/evm/txm/types/transaction.go +++ b/core/chains/evm/txm/types/transaction.go @@ -16,7 +16,7 @@ import ( "github.com/smartcontractkit/chainlink-common/pkg/sqlutil" clnull "github.com/smartcontractkit/chainlink-common/pkg/utils/null" - commontypes "github.com/smartcontractkit/chainlink/v2/common/txmgr/types" + commontypes "github.com/smartcontractkit/chainlink-framework/chains/txmgr/types" "github.com/smartcontractkit/chainlink/v2/core/chains/evm/gas" )