mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 17:33:47 +00:00
Fix minor typo in error message formatting Update signify.go
This commit is contained in:
parent
5065e6c935
commit
4a119c238b
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ import (
|
|||
|
||||
var (
|
||||
errInvalidKeyHeader = errors.New("incorrect key header")
|
||||
errInvalidKeyLength = errors.New("invalid, key length != 104")
|
||||
errInvalidKeyLength = errors.New("invalid key length != 104")
|
||||
)
|
||||
|
||||
func parsePrivateKey(key string) (k ed25519.PrivateKey, header []byte, keyNum []byte, err error) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue