Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Dec 7, 2024
1 parent 0f669db commit 577e26e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions signer/bls/cerberus/cerberus.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"google.golang.org/grpc/credentials"

sdkBls "github.com/Layr-Labs/eigensdk-go/crypto/bls"
"github.com/Layr-Labs/eigensdk-go/signer/bls"
"github.com/Layr-Labs/eigensdk-go/signer/bls/types"

v1 "github.com/Layr-Labs/cerberus-api/pkg/api/v1"
)
Expand Down Expand Up @@ -60,7 +60,7 @@ func New(cfg Config) (Signer, error) {

func (s Signer) Sign(ctx context.Context, msg []byte) ([]byte, error) {
if len(msg) != 32 {
return nil, bls.ErrInvalidMessageLength
return nil, types.ErrInvalidMessageLength
}

var data [32]byte
Expand Down
2 changes: 1 addition & 1 deletion signer/bls/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const (
type SignerConfig struct {
// Type of the signer
SignerType SignerType

// Params for local signer
// Path to the key file
Path string
Expand Down

0 comments on commit 577e26e

Please sign in to comment.