mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
crypto: fix syntax error in signature_nocgo.go
This commit is contained in:
parent
f5eb375e8a
commit
cde933dae3
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ func Ecrecover(hash, sig []byte) ([]byte, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
bytes := (*btcec.PublicKey)(pub).SerializeUncompressed(),
|
||||
bytes := (*btcec.PublicKey)(pub).SerializeUncompressed()
|
||||
return bytes, nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue