This commit is contained in:
Aditya 2018-08-17 22:22:45 +00:00 committed by GitHub
commit f9c9d847fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,7 +119,7 @@ func isProtectedV(V *big.Int) bool {
v := V.Uint64() v := V.Uint64()
return v != 27 && v != 28 return v != 27 && v != 28
} }
// anything not 27 or 28 are considered unprotected // anything not 27 or 28 is considered protected
return true return true
} }