diff --git a/core/signer.go b/core/signer.go index 20b583e1..503ac921 100644 --- a/core/signer.go +++ b/core/signer.go @@ -1,8 +1,6 @@ package core import ( - "crypto/ecdsa" - "github.com/cosmos/gogoproto/proto" ) @@ -14,5 +12,5 @@ type SignerConfig interface { type Signer interface { Sign(digest []byte) (signature []byte, err error) - GetPublicKey() (ecdsa.PublicKey, error) + GetPublicKey() ([]byte, error) }