From 469296b2553f2664b84cb27a744547778799752c Mon Sep 17 00:00:00 2001 From: Ryan Tinianov Date: Thu, 18 Jan 2024 19:06:55 -0500 Subject: [PATCH] Couple more error fixes --- core/services/relay/evm/types/codec_entry_test.go | 2 +- core/services/relay/evm/types/types.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/services/relay/evm/types/codec_entry_test.go b/core/services/relay/evm/types/codec_entry_test.go index 861fb4b96e2..8cd5e661c9f 100644 --- a/core/services/relay/evm/types/codec_entry_test.go +++ b/core/services/relay/evm/types/codec_entry_test.go @@ -1,13 +1,13 @@ package types import ( + "errors" "math/big" "reflect" "testing" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" - "github.com/pkg/errors" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/types/types.go b/core/services/relay/evm/types/types.go index 2ec5c9c8034..0697605edab 100644 --- a/core/services/relay/evm/types/types.go +++ b/core/services/relay/evm/types/types.go @@ -4,11 +4,11 @@ import ( "bytes" "context" "encoding/json" + "errors" "fmt" "github.com/ethereum/go-ethereum/common" "github.com/lib/pq" - "github.com/pkg/errors" ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types" "gopkg.in/guregu/null.v2"