Skip to content

Commit

Permalink
change name to gwcommon
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidOrchard committed Sep 10, 2024
1 parent 5ac44fa commit 8f26d15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/capabilities/gateway_connector/service_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/smartcontractkit/chainlink-common/pkg/services"
"github.com/smartcontractkit/chainlink/v2/core/config"
"github.com/smartcontractkit/chainlink/v2/core/logger"
gwCommon "github.com/smartcontractkit/chainlink/v2/core/services/gateway/common"
gwcommon "github.com/smartcontractkit/chainlink/v2/core/services/gateway/common"
"github.com/smartcontractkit/chainlink/v2/core/services/gateway/connector"
"github.com/smartcontractkit/chainlink/v2/core/services/gateway/network"
"github.com/smartcontractkit/chainlink/v2/core/services/keystore"
Expand Down Expand Up @@ -49,7 +49,7 @@ func NewConnectorSigner(config config.GatewayConnector, signerKey *ecdsa.Private
}

func (h *connectorSigner) Sign(data ...[]byte) ([]byte, error) {
return gwCommon.SignData(h.signerKey, data...)
return gwcommon.SignData(h.signerKey, data...)
}

func (h *connectorSigner) Start(ctx context.Context) error {
Expand Down

0 comments on commit 8f26d15

Please sign in to comment.