mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 14:16: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 {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
bytes := (*btcec.PublicKey)(pub).SerializeUncompressed(),
|
bytes := (*btcec.PublicKey)(pub).SerializeUncompressed()
|
||||||
return bytes, nil
|
return bytes, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue