From 79d3395786a089c234c73da6476da250eda4f405 Mon Sep 17 00:00:00 2001 From: Noa Levi <275430404+lphuc2250gma@users.noreply.github.com> Date: Thu, 14 May 2026 06:04:19 +0000 Subject: [PATCH] core/types: fix duplicated "the" in Authority doc-comment Signed-off-by: Noa Levi <275430404+lphuc2250gma@users.noreply.github.com> --- core/types/tx_setcode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/tx_setcode.go b/core/types/tx_setcode.go index 9487c9cc81..11c2e8c534 100644 --- a/core/types/tx_setcode.go +++ b/core/types/tx_setcode.go @@ -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) { sighash := a.SigHash() if !crypto.ValidateSignatureValues(a.V, a.R.ToBig(), a.S.ToBig(), true) {