mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-04 14:08:39 +00:00
core/types: fix duplicated "the" in Authority doc-comment
Signed-off-by: Noa Levi <275430404+lphuc2250gma@users.noreply.github.com>
This commit is contained in:
parent
da34eb59fd
commit
79d3395786
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ func (a *SetCodeAuthorization) SigHash() common.Hash {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Authority recovers the the authorizing account of an authorization.
|
// Authority recovers the authorizing account of an authorization.
|
||||||
func (a *SetCodeAuthorization) Authority() (common.Address, error) {
|
func (a *SetCodeAuthorization) Authority() (common.Address, error) {
|
||||||
sighash := a.SigHash()
|
sighash := a.SigHash()
|
||||||
if !crypto.ValidateSignatureValues(a.V, a.R.ToBig(), a.S.ToBig(), true) {
|
if !crypto.ValidateSignatureValues(a.V, a.R.ToBig(), a.S.ToBig(), true) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue