mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-18 05:56:37 +00:00
core/types: fix docs about protected Vs (#17436)
This commit is contained in:
parent
87f294aa0b
commit
c929030e28
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue