From e81dcb492d2d06f62488cabbd5cae7db309d6edf Mon Sep 17 00:00:00 2001 From: Kristijan Rebernisak Date: Wed, 22 Dec 2021 13:29:17 +0100 Subject: [PATCH] Remove unused 'KeyBundleID' from OCR2Spec --- go.mod | 5 +---- pkg/solana/relay.go | 4 ---- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/go.mod b/go.mod index a11100d93..5705def50 100644 --- a/go.mod +++ b/go.mod @@ -12,10 +12,7 @@ require ( github.com/stretchr/testify v1.7.0 ) -require ( - github.com/satori/go.uuid v1.2.0 - gopkg.in/guregu/null.v4 v4.0.0 -) +require github.com/satori/go.uuid v1.2.0 require ( github.com/confluentinc/confluent-kafka-go v1.7.0 diff --git a/pkg/solana/relay.go b/pkg/solana/relay.go index cf9a96027..845ebd7a6 100644 --- a/pkg/solana/relay.go +++ b/pkg/solana/relay.go @@ -7,7 +7,6 @@ import ( "github.com/gagliardetto/solana-go" uuid "github.com/satori/go.uuid" - "gopkg.in/guregu/null.v4" relaytypes "github.com/smartcontractkit/chainlink/core/services/relay/types" "github.com/smartcontractkit/libocr/offchainreporting2/reportingplugin/median" @@ -45,9 +44,6 @@ type OCR2Spec struct { TransmissionsID solana.PublicKey TransmissionSigner TransmissionSigner - - // OCR key bundle (off/on-chain keys) id - KeyBundleID null.String } type Relayer struct {