aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi
diff options
context:
space:
mode:
authorLiang ZOU <liang.d.zou@gmail.com>2018-09-25 18:26:35 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-09-25 18:26:35 +0800
commit6663e5da10e7198f7ff5e883fd857240e59d476c (patch)
tree300654c5bfdc957423328d51af2339012d5673c0 /internal/ethapi
parent30cd5c18549f645002aedb4c00e5bab683cb0835 (diff)
downloadgo-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.tar
go-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.gz
go-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.bz2
go-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.lz
go-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.xz
go-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.zst
go-tangerine-6663e5da10e7198f7ff5e883fd857240e59d476c.zip
all: fix various comment typos (#17748)
Diffstat (limited to 'internal/ethapi')
-rw-r--r--internal/ethapi/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go
index f7379e228..8016ebe3d 100644
--- a/internal/ethapi/api.go
+++ b/internal/ethapi/api.go
@@ -449,7 +449,7 @@ func (s *PrivateAccountAPI) Sign(ctx context.Context, data hexutil.Bytes, addr c
// addr = ecrecover(hash, signature)
//
// Note, the signature must conform to the secp256k1 curve R, S and V values, where
-// the V value must be be 27 or 28 for legacy reasons.
+// the V value must be 27 or 28 for legacy reasons.
//
// https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_ecRecover
func (s *PrivateAccountAPI) EcRecover(ctx context.Context, data, sig hexutil.Bytes) (common.Address, error) {