core/types: fix protected doc

This commit is contained in:
Aditya Sripal 2018-08-17 15:11:25 -07:00
parent 99e1a5e0fb
commit b6d6efcdcc

View file

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